// ==UserScript== // @name Pure 百度美化 // @description 一个非常漂亮的百度质感美化皮肤 // @namespace http://via-app.cn // @version 2.0 // @author 酷安@CWorld // @author 酷安@谷花泰 // @license MIT // @run-at document-start // @match *://m.baidu.com/* // @match *://www.baidu.com/* // @match *://wapbaike.baidu.com/* // @match *://baike.baidu.com/* // @match *://mbd.baidu.com/* // @match *://pae.baidu.com/* // @match *://baijiahao.baidu.com/* // @match *://haokan.baidu.com/* // @match *://mobile.baidu.com/* // @match *://zhidao.baidu.com/* // @match *://wk.baidu.com/* // @match *://fanyi.baidu.com/* // @match *://jingyan.baidu.com/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/520044/Pure%20%E7%99%BE%E5%BA%A6%E7%BE%8E%E5%8C%96.user.js // @updateURL https://update.greasyfork.icu/scripts/520044/Pure%20%E7%99%BE%E5%BA%A6%E7%BE%8E%E5%8C%96.meta.js // ==/UserScript== (function () { const whiteList = ["m.baidu.com", "www.baidu.com", "wapbaike.baidu.com", "baike.baidu.com", "http://m.baidu.com/?tn=simple", "https://m.baidu.com/?tn=simple", "mbd.baidu.com", "pae.baidu.com", "baijiahao.baidu.com", "haokan.baidu.com", "mobile.baidu.com", "zhidao.baidu.com", "wk.baidu.com", "fanyi.baidu.com", "jingyan.baidu.com"]; const hostname = window.location.hostname; const key = encodeURIComponent('酷安搜CWorld:Pure百度美化:执行判断'); const canLoad = whiteList.some(url => { if (url.match(hostname)) { return true; }; return false; }); if (!canLoad || window[key]) { return; }; window[key] = true; if (["m.baidu.com", "www.baidu.com", "wapbaike.baidu.com", "baike.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["http://m.baidu.com/?tn=simple", "https://m.baidu.com/?tn=simple"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["mbd.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["pae.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["baijiahao.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["haokan.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["mobile.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["zhidao.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["wk.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["fanyi.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; if (["jingyan.baidu.com"].some(hostname => hostname.match(location.hostname))) { document.head.innerHTML += ` `; }; document.head.innerHTML += ` `; })();