ニコニコプレミアムアワードのランキング、某んがすランキングになっていて鬱陶しいので、ふにん某を非表示にするスクリプトを書いた。
Tempermonkeyとかで使ってくれ。文字実体参照は適宜置き換えること。
// ==UserScript== // @name New Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author masuda // @match https://site.nicovideo.jp/premiumaward/* // @icon https://www.google.com/s2/favicons?sz=64&domain=nicovideo.jp // @grant none // ==/UserScript== const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms)); const blockList = [ "ふにんがす", "なのそん", "Among us", "Among Us", "アモアス", ]; (async function() { 'use strict'; await sleep(100); const list = document.querySelectorAll("li.game"); for (const elem of list) { const title = elem.getElementsByClassName("title")[0].innerText; if (blockList.some((word) => title.includes(word))) { elem.remove(); } } })();