您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
删除粉笔答案解析页中的VIP解析视频
// ==UserScript== // @name 粉笔答案解析页删除VIP视频解析广告 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 删除粉笔答案解析页中的VIP解析视频 // @author slience_2018 // @match https://spa.fenbi.com/ti/exam/solution/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function main() { const observer = new MutationObserver(function(mutations) { removeVideoSections(); }); observer.observe(document.body, { childList: true, subtree: true }); removeVideoSections(); } function removeVideoSections() { const sections = document.querySelectorAll('section[id^="section-video"]'); if (sections.length > 0) { sections.forEach(section => { section.remove(); }); } } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', main); } else { main(); } })();