TamperMonkey油猴脚本工具

Tamper Monkey

1
2
3
4
5
6
7
8
9
10
11
12
13
// ==UserScript==
// @name CSDN Code
// @match https://blog.csdn.net/*/article/details/*
// @icon https://g.csdnimg.cn/static/logo/favicon32.ico
// ==/UserScript==
(function() {
'use strict';

let codes = document.querySelectorAll("code");
codes.forEach(c=>{
c.contentEditable="true";
});
})();

B站视频下载


TamperMonkey油猴脚本工具
https://automask.github.io/wild/2021/10/27/log/T_TamperMonkey/
作者
Kyle Zhou
发布于
2021年10月27日
许可协议