test-module

just private test module

目前为 2024-03-16 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.cn-greasyfork.org/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);
})();