greaseMonkey-Ajout script personnelle sur vos pages-在html中添加所有者javascript '
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了greaseMonkey-Ajout script personnelle sur vos pages-在html中添加所有者javascript '相关的知识,希望对你有一定的参考价值。
// ==UserScript== // @name Name of your script // @namespace // @include http://www.example.com/* // ==/UserScript== var script = "http://localhost/yourscript.js"; if (typeof GM_addScript != "undefined") { GM_addScript(script); } else if (typeof GM_addScript != "undefined") { GM_addScript(script); } else { var heads = document.getElementsByTagName("head"); if (heads.length > 0) { var node = document.createElement("script"); node.src = script // node.innerhtml = script; heads[0].appendChild(node); } }
以上是关于greaseMonkey-Ajout script personnelle sur vos pages-在html中添加所有者javascript '的主要内容,如果未能解决你的问题,请参考以下文章