// ==UserScript== // @name 自定义网页标题 // @namespace Violentmonkey Scripts // @match https://m.ithome.com/* // @match https://web.telegram.org/* // @match https://bbs.nga.cn/* // @match https://bbs.hupu.com/* // @match https://*.yahoo.co.jp/* // @grant none // @version 1.5 // @author hoorn // @icon https://s2.loli.net/2024/05/29/m5LcD7ZblIrQHXV.png // @description 2024/3/19 11:23:41 // @license GPL-3.0 License // @downloadURL none // ==/UserScript== (function () { 'use strict'; var currentHost = window.location.host; //Modify the title var pageTitle = document.querySelector('title'); pageTitle.textContent = '.'; //Modify the image var imageUrl = 'https://s2.loli.net/2024/05/29/m5LcD7ZblIrQHXV.png'; pageTitle.textContent = '.'; if (currentHost.startsWith('bbs.hupu.com')) { var hupuLink = document.querySelector('link[rel="shortcut icon"]'); hupuLink.href = imageUrl; } else if (currentHost.startsWith('www.yahoo.co.jp') || currentHost.startsWith('news.yahoo.co.jp')) { var iconlink = document.querySelector('link[rel="icon"]'); iconlink.href = imageUrl; var shortIconLink = document.querySelector('link[rel="shortcut icon"]'); shortIconLink.href = imageUrl; } else { var linkElement = document.querySelector('link[rel="icon"]'); linkElement.href = imageUrl; var favicon = document.querySelector('link[rel="alternate icon"]'); favicon.href = imageUrl } })();