您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
消し去るやつ
// ==UserScript== // @name プレミアムDayブロッカー // @namespace https://ic731.net/ // @version 0.2 // @description 消し去るやつ // @author ichii731 // @include https://*.nicovideo.jp/* // @icon https://www.google.com/s2/favicons?sz=64&domain=nicovideo.jp // @grant none // ==/UserScript== (function() { window.addEventListener("load", function() { // top var target = document.querySelector('.common-header-1fketcj'); // video if (target == null) { target = document.querySelector('.common-header-ii5yd9'); } // live if (target == null) { target = document.querySelector('.common-header-k93j6r'); } // dic if (target == null) { target = document.querySelector('.common-header-15fn3mu'); } // seiga if (target == null) { target = document.querySelector('.common-header-15lsty1'); } // 非表示にする target.style.display = 'none'; console.log(target); }) })();