// ==UserScript== // @name GetThecookie // @name:zh-CN 一键获取网站cookie // @name:zh-TW 一鍵獲取網站cookie // @name:zh-HK 一鍵獲取網站cookie // @namespace https://www.techwb.cn/software/ // @version 1.1 // @created 2022-11-25 // @description Get the cookie of the current web page with one click, and automatically place it on the clipboard, just paste it directly (the get button is located in the lower left corner of the page). // @description:zh-CN 一键获取当前网页cookie,并且自动放置于剪切板,直接粘贴即可(获取按钮位于页面左下角)。 // @description:zh-TW 一鍵獲取當前網頁cookie,並且自動放置於剪切板,直接粘貼即可(獲取按鈕位於頁面左下角)。 // @description:ja 現在の Web ページの Cookie をワンクリックで取得でき、取得ボタンの位置は左下隅にあり、ボタンをクリックすると、現在のページの Cookie がクリップボードに置かれます. // @author Techwb.cn // @match http*://* // @include http*://* // @icon https://www.techwb.cn/logo.png // @grant GM_setClipboard // @license none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var lang = navigator.appName=="Netscape"?navigator.language:navigator.userLanguage; var btn={}; switch (lang){ case "zh-CN": case "zh-SG": btn={ btname:"获取网站" }; break; case "zh-TW": case "zh-HK": btn={ btname:"獲取網站" }; break; default: btn={ btname:"THEWEB" }; break; } // Your code here... let Container = document.createElement('div'); Container.id = "getcookie"; Container.style.position="fixed" Container.style.color="red" Container.style.left="0px" Container.style.top="92%" Container.style['z-index']="999999" Container.innerHTML =` ▶