It has been 148 days since the last update, the content of the article may be outdated.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
(function () { "use strict"; const resultList = document.querySelectorAll("main ol#b_results li.b_algo"); resultList.forEach((item) => { let url = item.querySelector("cite").innerHTML;
if (url.indexOf("csdn") !== -1) { item.innerHTML = "<strong>已屏蔽csdn</strong>"; } }); })();
|