您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
NAB no images Dark Night Mode Theme - simple remove banner
// ==UserScript== // @name NAB no images Dark Night Mode Theme // @namespace english // @description NAB no images Dark Night Mode Theme - simple remove banner // @include http*://*nab.com.au* // @version 1.5 // @run-at document-end // @grant GM_addStyle // ==/UserScript== var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = ' html{ filter: invert(85%)hue-rotate(180deg)grayscale(60%)contrast(120%);}.swiper-container { /*\n*/ display: none !important ;/*\n*/}img{max-width:25px !important ;height:auto !important ;} .section-container>.inner-container, .section-container>.outer-background>.inner-container {/*\n*/ /*\n*/ display: none;/*\n*/} html .ib-f5 .ib-header .banner {/*\n*/ /*\n*/ filter: invert(114%)hue-rotate(180deg)grayscale(0%)contrast(100%)saturate(100%);/*\n*/}div#ibFooter.rendered {/*\n*/ /*\n*/ filter: invert(114%)hue-rotate(180deg)grayscale(0%)contrast(100%)saturate(100%);/*\n*/}/*\n*/ body, html, html body, html.gr__ib_nab_com_au {/*\n*/ background: #808080 !important;/*\n*/ background-color: #808080 !important;/*\n*/ background-image: none important;/*\n*/} '; document.getElementsByTagName('head')[0].appendChild(style);