// ==UserScript== // @name 笔趣阁 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.biqugetv.com/45_45910/30473417.html // @icon https://www.google.com/s2/favicons?sz=64&domain=biqugetv.com // @require https://unpkg.com/jquery@3.5.1/dist/jquery.min.js // @grant none // @license MIT // ==/UserScript== (function() { var aa = $("#content").html(); var k = $(".bottem1").html(); var a = aa.split("二十两银子少是少了点"); if(a[0] != undefined){ document.querySelectorAll('html')[0].innerHTML = '' + a[0] + '
' + k; } document.querySelectorAll('html')[0].style.backgroundColor = "#2C313C"; var x = document.querySelectorAll("a"); var i; for (i = 0; i < x.length; i++) { x[i].style.color = "#99C37C"; } })();