Greasy Fork is available in English.

移除听书宝的全屏广告

移除听书宝的全屏iframe广告

// ==UserScript==
// @name         移除听书宝的全屏广告
// @namespace    https://djzhao.js.org
// @version      0.2
// @description  移除听书宝的全屏iframe广告
// @author       djzhao
// @match        *.tingshubao.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tingshubao.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.querySelector("iframe").parentElement.remove();
    document.body.style.overflow="auto";
})();