Greasy Fork

Greasy Fork is available in English.

dome-test

测试Dome

当前为 2022-07-23 提交的版本,查看 最新版本

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/448354/1073261/dome-test.js

// ==UserScript==
// @name            dome-test
// @version         0.0.1
// @description     测试Dome
// @author          Gamyou
// @include         *
// @license         Apache License, Version 2.0
// @grant           GM_getValue
// @grant           GM_setValue
// @grant           GM_log
// ==/UserScript==

(function () {
    GM_setValue('myValue', '123456789');
    let value = GM_getValue('myValue', 'abcdefg');
    GM_log('获取到的值为:' + value);
})