🏠 返回首頁 

Greasy Fork is available in English.

Remove Axutongxue Ads

Remove ads from axutongxue website

// ==UserScript==
// @name         Remove Axutongxue Ads
// @description  Remove ads from axutongxue website
// @version      1
// @match        https://axutongxue.net/*
// @grant        none
// @namespace https://greasyfork.org/users/832913
// ==/UserScript==
(function() {
'use strict';
const idToRemove = 'fdasfas';
const asideElement = document.getElementById(idToRemove);
if (asideElement) {
asideElement.remove();
console.log(`Removed element with ID '${idToRemove}'`);
}
})();