5

有没有办法在 Chrome 的 JavaScript 控制台中 使用Tampermonkey 的 API ?

我想弄乱和之类的GM_xmlhttpRequest()功能GM_listValues()

4

1 回答 1

7
  1. 创建以下脚本:

    // ==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;
    
  2. 打开任何可以激活 Tampermonkey 的页面(例如https://stackoverflow.com/)。

  3. 打开开发者工具 -> 控制台。
  4. 完成后,您现在可以使用导出的方法做任何您想做的事情(从步骤 1 开始)。

控制台截图

于 2012-12-27T18:40:24.273 回答