您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Force remove all border styles from web pages
当前为
// ==UserScript== // @name [MWI]UI Optimization: Borderless Theme Style // @name:zh-CN [银河奶牛]UI优化:无边框主题样式 // @namespace https://github.com/shenhuanjie // @version 1.0.0 // @description Force remove all border styles from web pages // @description:zh-CN [银河奶牛]UI优化:移除网页中所有元素的边框样式 // @author shenhuanjie // @match https://www.milkywayidle.com/game* // @icon https://www.milkywayidle.com/favicon.svg // @grant GM_addStyle // @license MIT // @homepageURL https://github.com/shenhuanjie/userscripts // @supportURL https://github.com/shenhuanjie/userscripts/issues // @run-at document-start // @compatible chrome Tampermonkey // @compatible firefox Greasemonkey // @compatible edge Tampermonkey // @grant none // ==/UserScript== (function() { 'use strict'; // Apply global border removal style // 应用全局无边框样式 GM_addStyle(` * { border: none !important; } `); console.log('[Global Border Remover] Loaded. All element borders have been removed.'); console.log('[全局无边框样式] 已加载,所有元素边框已被移除'); })();