您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
清除监控平台的eclipse属性
// ==UserScript== // @name 清除eclipse属性 // @namespace http://tampermonkey.net/ // @version 2024-05-10-1 // @description 清除监控平台的eclipse属性 // @author You // @match http://172.16.60.11/* // @match http://172.16.60.12/* // @match http://172.16.60.13/* // @match http://172.16.60.14/* // @icon https://www.google.com/s2/favicons?sz=64&domain=60.13 // @grant none // ==/UserScript== (function() { 'use strict'; const styleText = ` /*多语言翻译会动态增加该样式*/ overflow: hidden !important; text-overflow: clip !important; white-space: nowrap !important; `; const styleSheet = document.createElement('style'); styleSheet.type = 'text/css'; styleSheet.innerText = `.ellipsis { ${styleText} }`; document.head.appendChild(styleSheet); })();