somthing.db

description

// ==UserScript==
// @name        somthing.db
// @namespace   somthing.db
// @description description
// @include     *
// @version     1
// @grant       GM_getValue
// @grant       GM_setValue     
// ==/UserScript==

let ss = 'AAA';
GM_setValue('key', ss);
console.log(ss + ': ' +GM_getValue('key'));