您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Restores the default blue bird Twitter logo and removes the dog logo forced by Elon Musk
当前为
// ==UserScript== // @name Restore Twitter Logo // @description Restores the default blue bird Twitter logo and removes the dog logo forced by Elon Musk // @namespace https://www.example.com/ // @version 1.3 // @author noxljlfsd // @grant none // @match https://twitter.com/* // @license MIT // ==/UserScript== (function() { 'use strict'; document.onreadystatechange = function() { //if (document.readyState === 'complete') { // Set the default Twitter logo URL const defaultLogoUrl = 'https://abs.twimg.com/responsive-web/client-web/icon-ios.8ea219d5.png'; // Find the Twitter logo element and restore the default logo const twitterLogo = document.querySelector("#react-root > div > div > div.css-1dbjc4n.r-18u37iz.r-13qz1uu.r-417010 > header > div > div > div > div:nth-child(1) > div.css-1dbjc4n.r-dnmrzs.r-1vvnge1 > h1 > a > div > svg"); if (twitterLogo) { twitterLogo.outerHTML = `<image xlink:href="${defaultLogoUrl}" src="${defaultLogoUrl}" style="width:1.75rem;height:1.75rem;" alt="">`; } //} }; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址