您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes the 9front.org site more sensible and usable
// ==UserScript== // @name No political BS on a collaborative open source project that isnt't owned by anyone - 9front.org // @namespace Violentmonkey Scripts // @match https://9front.org/* // @license MIT-0 // @version 1.0 // @author xplshn // @description Makes the 9front.org site more sensible and usable // ==/UserScript== (function() { 'use strict'; // Remove the specific <a> elements const linksToRemove = [ "movies/Dead_Kennedys_-Nazi_Punks_Fuck_Off_lyrics.mp4", "https://blacklivesmatter.com", "https://duckduckgo.com/?t=ffab&q=From+the+Don+to+the+Dnepr%3A+Soviet+Offensive+Operations%2C+December+1942+-+August+1943", "https://www.plannedparenthood.org" ]; linksToRemove.forEach(link => { const anchorTags = document.querySelectorAll(`a[href="${link}"]`); anchorTags.forEach(anchor => anchor.remove()); }); // Change the favicon const favicon = document.querySelector("link[rel*='icon']") || document.createElement("link"); favicon.type = "image/x-icon"; favicon.rel = "icon"; favicon.href = "https://plan9.io/plan9/img/plan9bunnysmwhite.jpg"; document.head.appendChild(favicon); })();