您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Dark theme for NEA Haze website
当前为
// ==UserScript== // @name Eclipse // @namespace http://yeoxingyee.ml/ // @version 1.1 // @description Dark theme for NEA Haze website // @author Yeo Xing Yee // @match http://www.haze.gov.sg/* // @match https://www.facebook.com/* // @include https://twitter.com/ // @include https://twitter.com/i/notifications // @include https://twitter.com/mentions* // @include http://twitter.com* // @include https://twitter.com* // @include https://tweetdeck.twitter.com/* // @include http://tweetdeck.twitter.com/* // @match <all_urls> // @grant none // @run-at document-start // ==/UserScript== (function() {var css = ""; if (false || (new RegExp("http://www.haze.gov.sg/")).test(document.location.href) || (new RegExp("^http(s)?://.*(?!code)\\.facebook\\.com/(?!plugins/|Fplugins|help|business|safety|about/basics).*$")).test(document.location.href) || (location.href.replace(location.hash,'') == "https://twitter.com/") || (location.href.replace(location.hash,'') == "https://twitter.com/i/notifications") || (document.location.href.indexOf("https://twitter.com/mentions") == 0)) css += [ "div,div#footer{", "background: #161616 !important", "}", "li, ul, buttons, nav, input, ._5yk1, .UFIImageBlockContent _42ef _8u,div.search-container{", "background: #161616 !important", "}", "table tbody .even td, table tbody .even th{", " background-color: rgb(40,40,40) !important;", "}", "tr{", "border-top-color: rgb(0,0,0) !important;", "}", "*{", "color: white !important;", "}", "a{", "color: rgb(20,240,240) !important;", "}", "html, body{", "background: url(http://cdn.wonderfulengineering.com/wp-content/uploads/2014/04/space-wallpapers-9.jpg) #000 no-repeat; !important", "background-color: #000 !important", "background-size: cover;", "}", "#u_ps_0_5_1{", "display:none !important;", "}", ].join("\n"); if (typeof GM_addStyle != "undefined") { GM_addStyle(css); } else if (typeof PRO_addStyle != "undefined") { PRO_addStyle(css); } else if (typeof addStyle != "undefined") { addStyle(css); } else { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); var heads = document.getElementsByTagName("head"); if (heads.length > 0) { heads[0].appendChild(node); } else { // no head yet, stick it whereever document.documentElement.appendChild(node); } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址