这是来自用户脚本的代码示例:
var ExampleObj = {
somevar1:'value1',
somevar2:'value2',
somevar3:'value3',
somefunction1:function(){
//do sth
},
somefunction2:function(){
//do sth else
}
}
当我尝试从脚本调用我的函数时:一切正常,但我无法从浏览器控制台访问:
(ReferenceError:ExampleObj 未定义)
我的 Greasemonkey/Tampermonkey 设置(元数据):
// ==UserScript==
// @name [this is my secret]
// @version 1
// @run-at document-end
// @include [this is my secret]
// @grant none
// ==/UserScript==
脚本有效;我只需要从浏览器控制台访问这些功能。