您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Kickstarter -- hide site making political point by manipulating data to fit its narrative.
// ==UserScript== // @name Kickstarter -- fix logo. // @namespace https://www.kickstarter.com // @version 0.1 // @description Kickstarter -- hide site making political point by manipulating data to fit its narrative. // @author Agamemnus // @match https://*.kickstarter.com/* // @grant none // ==/UserScript== void function () { 'use strict' window.addEventListener('load', function () { let testInterval = setInterval(test, 20) test() function test () { let badLink = document.querySelector('a[href="https://blacklivesmatter.com/defundthepolice/"]') if (!badLink) return clearInterval(testInterval) badLink.parentNode.removeChild(badLink) let badLogo = document.querySelector('.fill-black') if (badLogo) { badLogo.classList.remove('.fill-black') badLogo.classList.add('fill-ksr10-green') } } }) }()