Userscript/Userstyle that aims to fix problems with the Inkapedia's darkmode (not fully complete)
当前为
// ==UserScript==
// @name Inkapedia DarkMode fix
// @namespace http://tampermonkey.net/
// @version 0.1.4
// @description Userscript/Userstyle that aims to fix problems with the Inkapedia's darkmode (not fully complete)
// @author WhiteTapeti
// @match *://splatoonwiki.org/*
// @match *://syndication.twitter.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=splatoonwiki.org
// @grant GM_addStyle
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// @require https://greasyfork.org/scripts/467838-inkapedia-darkmode-fix/code/Inkapedia%20DarkMode%20fix.user.js
// @run-at document-start
// ==/UserScript==
if (window.top !== window.self) {
if (/.*:\/\/syndication\.twitter\.com\/.*/igm.test(window.location.href)) {
if (/.*:\/\/syndication\.twitter\.com\/.*&theme=dark/i.test(window.location.href) == false) {
window.location.replace(window.location.href.replace(/&transparent=false/igm, '&transparent=true') + "&theme=dark")
}
}
}
if (/https:\/\/splatoonwiki\.org\/wiki\/Special:.*/i.test(window.location.href) == false) {
GM_addStyle(`html { color-scheme: dark !important; }nav#p-views .selected, nav#p-namespaces .selected, nav#p-namespaces li, nav#p-views li, nav#p-cactions {background-color: #27262c;}.vector-menu-dropdown .vector-menu-heading:after{-webkit-filter:invert(1)!important;filter:invert(1)!important} audio { border: solid #8c8c8c !important; -webkit-border-radius: 2000px !important; -moz-border-radius: 2000px !important; border-radius: 2000px !important; }.mw-parser-output .bigrun {background-image: url('https://files.catbox.moe/ly7j6l.svg')!important;}.mw-parser-output .splatfest {background-image: url('https://files.catbox.moe/0ui5mm.svg')!important;}.mw-parser-output .bubbleamiibobg{background-image: url("https://files.catbox.moe/t9nuda.svg")!important;}.mw-parser-output .grizzco{background-image: url("https://files.catbox.moe/fy9pfq.svg")!important;}.navpopup{background-color: #27262c!important;}.popup_drop:hover{background: #323137;}.popup_drop:hover .popup_menu, .popup_drop .popup_menu:hover{background: #323137;}.mw_metadata th{background-color: #202020;}.mw_metadata td{background-color: #202020;}#filetoc{background-color: #202020!important;}.searchButton[name='go']{background: no-repeat center / 1.23076923em url(https://files.catbox.moe/gwcelc.svg);}.textwidget, .cd{background-color: rgba(255,255,255,0.05) !important;}.btextwidget{background-color: rgba(255,255,255,0.1) !important;}`);
}