本帖最后由 drcdrc 于 2024-4-17 21:12 编辑
在脚本猫中使用如下代码获取cookies,在脚本猫编辑窗口中使用调试可以获取cookies,但是放到真正的网页中就不行了,哥哥帮忙看看怎么回事?
// ==UserScript==
// @name GetCookies
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description try to take over the world!
// @author You
// @match https://bbs.tampermonkey.net.cn/*
// @connect *
// @grant unsafeWindow
// @grant GM_cookie
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
// Your code here...
GM_cookie("list", {
domain: ".tampermonkey.net.cn"
}, (cookies) => {
console.log("domain", cookies);
});
})();