有没有办法在 Chrome 的 JavaScript 控制台中 使用Tampermonkey 的 API ?
我想弄乱和之类的GM_xmlhttpRequest()
功能GM_listValues()
。
有没有办法在 Chrome 的 JavaScript 控制台中 使用Tampermonkey 的 API ?
我想弄乱和之类的GM_xmlhttpRequest()
功能GM_listValues()
。
创建以下脚本:
// ==UserScript==
// @name Exports some GM functions
// @namespace Whatever
// @match *
// ==/UserScript==
// WARNING: Any page can now use these methods! Be careful,
// or change "@match *" to "@match https://example.com" and
// visit https://example.com to test the API.
unsafeWindow.GM_xmlhttpRequest = GM_xmlhttpRequest;
unsafeWindow.GM_listValues = GM_listValues;
打开任何可以激活 Tampermonkey 的页面(例如https://stackoverflow.com/)。