just private test module
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greatest.deepsurf.us/scripts/490056/1344275/test-module.js
// ==UserScript==
// @name test-module
// @namespace http://tampermonkey.net/
// @version 0.0.2
// @description just private test module
// @author You
// @match https://example.com/
// @grant none
// @run-at document-start
// @license MIT
// ==/UserScript==
await (async function() {
console.log(GM_info.script.version);
})();