Adblock - best ad blocker

Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.

Hvad er Adblock - best ad blocker?

Adblock - best ad blocker er en Chrome-udvidelse udviklet af Odd Extensions, og dens hovedfunktion er "Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Adblock - best ad blocker-udvidelses-CRX-fil

Download Adblock - best ad blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Adblock ensures a seamless browsing experience by eliminating annoying popups and intrusive ads on popular platforms like YouTube, Spotify, and Twitch. Say goodbye to interruptions during videos and music streaming. Customize your ad-blocking settings, enjoy faster page loading times, and save bandwidth. Enhance your online journey with Adblock, supporting a more pleasant browsing environment without compromising content creators' revenue—whitelist non-intrusive ads when appropriate.                    

Grundlæggende oplysninger om udvidelsen

Navn Adblock - best ad blocker Adblock - best ad blocker
ID hlneapehiglcfldmddiclojadjnfhclm
Officiel URL https://chromewebstore.google.com/detail/adblock-best-ad-blocker/hlneapehiglcfldmddiclojadjnfhclm
Beskrivelse Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.
Filstørrelse 1.5 MB
Antal Installationer 48
Nuværende Version 1.0.0
Senest Opdateret 2023-12-21
Udgivelsesdato 2023-12-21
Udvikler Odd Extensions
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adblock - best ad blocker",
    "description": "Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "bestadblocker16.png",
        "48": "bestadblocker48.png",
        "128": "bestadblocker128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Adblock - best ad blocker",
        "default_icon": "bestadblocker16.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "contentScriptSpotify.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "Youtube.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ]
        },
        {
            "resources": [
                "contentScriptSpotify.js",
                "adsSweetalertSpotify.js",
                "adsAdsRemoveSpotify.js",
                "adswsHooksSpotify.js"
            ],
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ]
        }
    ]
}