javascript tampermonkey脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript tampermonkey脚本相关的知识,希望对你有一定的参考价值。


    
// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://drivingc.com:8888
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    function addGlobalStyle(css) {
        var head, style;
        head = document.getElementsByTagName('body')[0];
        if (!head) { return; }
        style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = css;
        head.appendChild(style);
        console.log("tampermonkey addGlobalStyle");
    }

    addGlobalStyle('.CodeMirror { font-size: 20px }.jp-RenderedHTMLCommon{ font-size: 20px }');
})();

以上是关于javascript tampermonkey脚本的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript(JS)逆向工具Tampermonkey用法 (JS Hook代码逆向破解)

使用 Tampermonkey/javascript 控制 Netflix (HTML5) 播放

求助,tampermonkey安装不了脚本了 求助

如何安装tampermonkey

安装在tampermonkey里的脚本和stylish里的脚本怎么备份的?

Tampermonkey Beta与ampermonkey Stable有啥不同