Greasy Fork

Greasy Fork is available in English.

derstandard.at adfree Rework Mai 2024

Zeigt normale Bilder bei Artikel an und keine Benachrichtung mehr, dass Werbung geblockt wird.

当前为 2024-09-03 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         derstandard.at adfree Rework Mai 2024
// @namespace    derstandard
// @version      20240946
// @description  Zeigt normale Bilder bei Artikel an und keine Benachrichtung mehr, dass Werbung geblockt wird.
// @author       You
// @match        https://*.derstandard.at/*
// @license MIT
// @grant        GM_addStyle
// @icon         https://www.google.com/s2/favicons?sz=64&domain=derstandard.at
// ==/UserScript==
/*- The @grant directive is needed to work around a major design
    change introduced in GM 1.0. It restores the sandbox.

    If in Tampermonkey, use "// @unwrap" to enable sandbox instead.
*/

console.log('Tampermonkey derstandard.at starting');

(new MutationObserver(check)).observe(document, {childList: true, subtree: true});
(new MutationObserver(check2)).observe(document, {childList: true, subtree: true});
(new MutationObserver(check3)).observe(document, {childList: true, subtree: true});
(new MutationObserver(check4)).observe(document, {childList: true, subtree: true});

function check(changes, observer) {
    if(document.querySelector("[data-ad-active='false']")) {
        console.log("QuerySelecter executed and found: [data-ad-active='false']");
        //observer.disconnect();
        // actions to perform after #mySelector is found
        document.querySelectorAll("[data-ad-active='false']").forEach(function(elem) {
            console.log('Removing element from "false" match: ', elem);
            elem.remove();
        })
    }
}


function check2(changes, observer) {
    if(document.querySelector("[data-ad-active='true']")) {
        console.log("QuerySelecter executed and found: [data-ad-active='true']");
        //observer.disconnect();
        // actions to perform after #mySelector is found
        document.querySelectorAll("[data-ad-active='true']").forEach(function(elem) {
            console.log('Removing element from "true" match ', elem);
            elem.remove();
        })
    }
}

function check3(changes, observer) {
    if(document.querySelector("[class='dstpiano-container visible-message']")) {
        console.log("QuerySelecter executed and found: [class='dstpiano-container visible-message']");
        //observer.disconnect();
        // actions to perform after #mySelector is found
        document.querySelectorAll("[class='dstpiano-container visible-message']").forEach(function(elem) {
            console.log('Removing element from "true" match ', elem);
            elem.remove();
        })
    }
}

function check4(changes, observer) {
    if(document.querySelector("[src='*dailymotion.com/player*']")) {
        console.log("QuerySelecter executed and found: [src='*dailymotion.com/player*']");
        //observer.disconnect();
        // actions to perform after #mySelector is found
        document.querySelectorAll("[src='*dailymotion.com/player*']").forEach(function(elem) {
            
            var iframe = elem.parentElement;
            iframe.removeAttribute("allow");
            console.log('tweaking attribute allow (no autoplay)');
            iframe.setAttribute("allow", "fullscreen; picture-in-picture; web-share")
        })
    }
}

/*
<iframe data-ratio="16:9" src="https://geo.dailymotion.com/player/xbznj.html?video=x950pjo&amp;subtitles-default=de" frameborder="0" allowfullscreen="" allow="autoplay; fullscreen; picture-in-picture; web-share"></iframe>
*/