您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
On Twitter, replaces the NG emoji with a Newgrounds tank.
// ==UserScript== // @name NG Replacer // @namespace Violentmonkey Scripts // @match *://twitter.com/* // @match *://x.com/* // @grant none // @version 1.02 // @author critatonic // @description On Twitter, replaces the NG emoji with a Newgrounds tank. // @icon https://i.ibb.co/7y2RxLR/ngemoji.png // @run-at document-idle // @require https://cdn.jsdelivr.net/npm/@violentmonkey/dom@2 // ==/UserScript== (function() { 'use strict'; const disconnect = VM.observe(document.body, () => { // Find the target node const node = document.querySelector(`img[src="${'https://abs-0.twimg.com/emoji/v2/svg/1f196.svg'}"]`); if (node) { node.src = "https://pbs.twimg.com/media/GEp6U85a0AAOf7o?format=png&name=orig"; } }) })();