您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove all styles!
// ==UserScript== // @name Отключить все стили // @namespace DisAllStyle // @version 0.1 // @description Remove all styles! // @include * // @grant none // ==/UserScript== window.addEventListener('load',function(){ but=document.createElement('button'); but.onclick=function(){ var st=document.createElement('style'); st.innerText='*{all:unset !important;}'; document.body.appendChild(st); this.remove(); }; but.innerText='Disable All Styles'; but.style.position='fixed'; but.style.bottom='0'; but.style.right='0'; but.style.zIndex='99999999999'; document.body.appendChild(but); });