使用localStorage有transfer data between pages on the same domain的方法,但我需要在不同的域之间传输数据。在Chrome中,我尝试使用符号链接,以便域共享存储,但在重新启动chrome之前,在其他域中找不到在一个域中设置的项目。如何在不同域上的用户脚本之间传输数据?我将使用任何可以工作的浏览器。
这只是供个人使用
答案 0 :(得分:1)
我会使用@include
包含这两个域,然后使用GM_getValue
和GM_setValue
来存储和检索数据。
我还提供了一个关于如何使用GM_registerMenuCommand
函数的示例,当用户从userscript插件弹出窗口中选择该选项时,该函数会打开提示。
// ==UserScript==
// @name Pinky
// @namespace http://pinkyAndTheBrain.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @include https://domain1.com
// @include https://domain2.com
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_registerMenuCommand
// ==/UserScript==
/* global GM_getValue, GM_setValue, GM_registerMenuCommand */
/* jshint esnext:true */
(() => {
'use strict';
// get previous setting (or set to Pinky as default)
let char = GM_getValue('character', 'Pinky');
// do something fun!
// called through the userscript addon
GM_registerMenuCommand('Are you Pinky or Brain?', () => {
const value = prompt('Enter "p" or "b"', char);
if (value !== null) {
// default to Pinky
char = /^b/i.test(value) ? 'Brain' : 'Pinky';
GM_setValue('character', char);
}
});
})();