こんにちは、誰かが広告をブロックする方法を疑問に思っているなら、 tv.idnes.cz 。 Tampermonkeyをブラウザにインストールし、スクリプトを追加します。

// ==UserScript==
// @name         iDNES Video block ads
// @namespace    http://tampermonkey.net/
// @version      2024-09-28
// @description  try to take over the world!
// @author       You
// @match        https://tv.idnes.cz/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var url = document.querySelector('meta[itemprop="contentURL"]').content;
    url = url.replace( '_middle_', '_high_');
    document.querySelector('.art-video > div:first-of-type').innerHTML = '';
    var video = document.createElement('video');
    video.src = url;
    video.autoplay = true;
    video.setAttribute("width", "320");
    video.setAttribute("height", "240");
    video.setAttribute("controls", "controls");
    video.setAttribute("style", "display: block;width: 100%;height: auto;aspect-ratio: 1 / 0.5625;");
    document.querySelector('.art-video > div:first-of-type').appendChild(video);
    document.querySelector('.art-video video').play();

    document.querySelector('.art-video video').addEventListener('ended', function(e) {
        window.location = document.querySelector('.col-b .art-link').href;
    });

})();