greaseMonkey-Ajout script personnelle sur vos pages-在html中添加所有者javascript '

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了greaseMonkey-Ajout script personnelle sur vos pages-在html中添加所有者javascript '相关的知识,希望对你有一定的参考价值。

  1. // ==UserScript==
  2. // @name Name of your script
  3. // @namespace
  4. // @include http://www.example.com/*
  5. // ==/UserScript==
  6.  
  7. var script = "http://localhost/yourscript.js";
  8.  
  9. if (typeof GM_addScript != "undefined") {
  10. GM_addScript(script);
  11. } else if (typeof GM_addScript != "undefined") {
  12. GM_addScript(script);
  13. } else {
  14. var heads = document.getElementsByTagName("head");
  15. if (heads.length > 0) {
  16. var node = document.createElement("script");
  17. node.type = "text/javascript";
  18. node.src = script
  19. // node.innerhtml = script;
  20. heads[0].appendChild(node);
  21. }
  22. }

以上是关于greaseMonkey-Ajout script personnelle sur vos pages-在html中添加所有者javascript '的主要内容,如果未能解决你的问题,请参考以下文章

HTML中插入脚本(script)

怎样在js页面添加script标签

shell script

外部脚本必须包含 <script> 标签吗?

如何修改script.bin/script.fex

JS中script词法分析