I got question like this, how to get information from one web url for example and use it in another url
// ==UserScript==
// @name test
// @description try to take over the world!
// @author You
// @version 0.1
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_openInTab
// @grant GM_SuperValue
// @include https://tynachofinder.ge/*
// @include https://tynachofinder.ge/finder/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
// @require https://userscripts-mirror.org/scripts/source/107941.user.js
// ==/UserScript==
GM.setValue("discord", document.querySelector(".site-btn").innerText);
document.querySelector(".header-section.clearfix").innerHTML = (
GM.getValue("discord")
);
something like this how to make it working