// ==UserScript== // @name 修改摸鱼派favico为百度 // @namespace https://fishpi.cn/ // @version 0.1 // @description 修改你的摸鱼派favico为百度 // @author iwpz // @match *://fishpi.cn/* // @license MIT // @icon https://fishpi.cn/images/favicon.png // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var head=document.getElementsByTagName('head')[0]; var children = head.children; for(var i = 0;i < children.length;i++){ if(children[i].rel == 'icon'){ children[i].href = 'https://www.baidu.com/favicon.ico'; return; } } })();