Greasy Fork

tampermonkey storage proxy

none

目前为 2024-04-06 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.cloud/scripts/491829/1355396/tampermonkey%20storage%20proxy.js

作者
rssa_romeo
版本
0.1
创建于
2024-04-06
更新于
2024-04-06
大小
2.2 KB
许可证
GPLv3

example:
log((storage.test = e=>e))// e=>e
log(storage.test, typeof storage.test)// [e=>e, function]
log((storage.test = "asdasd"))// asdasd
log(storage.test, typeof storage.test)// [asdasd, string]