Greasy Fork is available in English.

底部ad

Removes all code containing the href attribute from the page

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         底部ad
// @namespace    none
// @version      1
// @description  Removes all code containing the href attribute from the page
// @match        http://www.htmanga3.top/*
// @match        *://www.htmanga3.top/*
// @grant        none
// ==/UserScript==


(function() {
    'use strict';

    const elements = document.querySelectorAll('*[alt][style]');
    const fragment = document.createDocumentFragment();

    for (let i = 0; i < elements.length; i++) {
        const element = elements[i];
        fragment.appendChild(element);
    }

    // 一次性插入到文档中
    elements[0].parentNode.appendChild(fragment);
})();