page_visited

page visited

// ==UserScript==
// @name         page_visited
// @include      https://www.merriam-webster.com/*
// @supportURL   https://github.com/sxlgkxk/browser_script/issues
// @version      0.1
// @description  page visited
// @namespace    http://sxlgkxk.github.io/
// @author       sxlgkxk
// @icon         http://sxlgkxk.github.io/im/avatar.jpg
// @license      MIT
// @grant        GM_getValue
// @grant        GM_setValue
// @grant        GM_xmlhttpRequest
// ==/UserScript==

(function(){

val=localStorage.getItem(location.href)
if(val){
	body=document.querySelector('body')
	css_dom=document.createElement('div')
	body.after(css_dom)
	css_dom.innerHTML=`<style>
		body{
			background-color: #ddd !important;
		}
	</style>`
}

localStorage.setItem(location.href, "{}")

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址