粉笔答案解析页删除VIP视频解析广告

删除粉笔答案解析页中的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();
    }
})();