test-module

just private test module

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.cn-greasyfork.org/scripts/490056/1344275/test-module.js

  1. // ==UserScript==
  2. // @name test-module
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.2
  5. // @description just private test module
  6. // @author You
  7. // @match https://example.com/
  8. // @grant none
  9. // @run-at document-start
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. await (async function() {
  14. console.log(GM_info.script.version);
  15. })();