Scrolller.com Adblocker

Blocks Ads and the Premium, Adblock & Bandwidth Popup on Scrolller.com

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name            Scrolller.com Adblocker
// @name:de         Scrolller.com Werbeblocker
// @version         1.0.7
// @description     Blocks Ads and the Premium, Adblock & Bandwidth Popup on Scrolller.com
// @description:de  Blockiert Werbung und das Premium, Adblock & Bandwith Popup auf Scrolller.com
// @icon            https://scrolller.com/assets/favicon-16x16.png
// @author          TalkLounge (https://github.com/TalkLounge)
// @namespace       https://github.com/TalkLounge/scrolller.com-adblocker
// @license         MIT
// @match           https://scrolller.com/*
// @grant           GM_addStyle
// ==/UserScript==

(function () {
    'use strict';

    GM_addStyle(`
    /* General: Popup: Wish Scrolller Was Ad-Free? */
    .popup:has(img[src*=cat]) {
        display: none;
    }

    /* General: Popup: Support Scrolller - Explore More Content! */
    .popup:has([class*=ctaButton]) {
        display: none;
    }

    /* General: Header Button */
    [class*=desktopAdSessionButton] {
        display: none;
    }

    /* Feed: Banner Ad Links */
    [class*=content]>a[class*=highlight] {
        display: none;
    }

    /* Feed: Inline Scrolller Ads */
    [class*=galleryItemHandler]:has([class*=nativeAd]) {
        visibility: hidden;
    }

    /* Feed: Inline External Ads */
    [class*=galleryItemHandler]:has([class*=iframeAdContainer]) {
        visibility: hidden;
    }

    /* Feed: Right Bottom Corner Circle Ad */
    button:has([class*=liveCircle]) {
        display: none;
    }

    /* Post: Banner Ad Link */
    #fullscreen-view [class*=topBanner] a[class*=adLink] {
        display: none;
    }`);
})();