您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
针对的就是“被这个反智视频笑死”这个逆天的鬼东西
// ==UserScript== // @name 删除B站推荐的逆天玩意儿 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 针对的就是“被这个反智视频笑死”这个逆天的鬼东西 // @author 狗 // @license 狗 // @match https://www.bilibili.com/video/* // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net // @grant none // @require https://cdn.staticfile.org/jquery/1.12.4/jquery.min.js // @run-at document-end // @grant GM_setValue // @grant GM_getValue // ==/UserScript== $(document).ready(function() { deleteRetard(); }); function deleteRetard() { console.log('?'); const element = document.getElementsByClassName('video-page-operator-card-small')[0]; const text = element.innerText; if(text.includes('被这个反智视频笑死')) { element.style.display = 'none'; console.log('移除成功!'); } }