NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name show last HD post // @namespace // @include http://www.18p2p.com/forum/forumdisplay.php* // @include http://www.18board.com//forum/forumdisplay.php* // @description show last HD post // @version 1.2.1 // @grant none // ==/UserScript== // //: // var as=document.getElementsByTagName("a"), i=0, a; var pattern = /最新\S/; var pattern2 = /HD/; var pattern3 = /4[Kk]/; while (as[i]) { a = as[i]; if (a.textContent.match(pattern)) { if (a.textContent.match(pattern2)){ //HD or FHD a.textContent = "######"+a.textContent+"######"; a.parentNode.style.backgroundColor = "white"; } else if (a.textContent.match(pattern3)){ //4K a.textContent = "######"+a.textContent+"######"; a.parentNode.style.backgroundColor = "red"; } else { //just last non-HD/4K a.textContent = "######"+a.textContent+"######"; a.parentNode.style.backgroundColor = "pink"; } } i++; }