我有一个小问题,我有一个脚本(我正在使用Tampermonkey),当我发出POST请求时,它说:
VM2584:33拒绝连接到" https://my_url.com/sub1/sub2/":URL不是@connect列表的一部分
它是"@connect列表"的一部分
// @name My Script
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match url.com/*
// @grant GM_xmlhttpRequest
// @grant GM_getValue
// @grant GM_setValue
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
// @require https://raw.githubusercontent.com/js-cookie/js-cookie/master/src/js.cookie.js
// @connect https://my_url.com/sub1/sub2/
Run Code Online (Sandbox Code Playgroud)
那么问题出在哪里?