Youtube adblocker

watch ads free videos on youtube

Vad är Youtube adblocker?

Youtube adblocker är en Chrome-tillägg utvecklad av youtbadblocker, och dess huvudfunktion är "watch ads free videos on youtube".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Youtube adblocker-förlängningens CRX-fil

Ladda ner Youtube adblocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Youtube adblocker is a Chrome extension designed to enhance your browsing experience by blocking intrusive ads on youtube  and annoying pop-ups. With its user-friendly interface, it offers efficient ad and popup blocking, allowing you to enjoy a cleaner, faster, and more secure online environment. Say goodbye to distractions, protect your privacy, and browse the web with ease. Install Youtube adblocker today and take control of your online experience.                    

Grundläggande Information om Tillägg

Namn Youtube adblocker Youtube adblocker
ID nihjoknbdeopkanoegafjcbbeaidemke
Officiell webbadress https://chromewebstore.google.com/detail/youtube-adblocker/nihjoknbdeopkanoegafjcbbeaidemke
Beskrivning watch ads free videos on youtube
Filstorlek 136 KB
Antal Installationer 440
Aktuell Version 1.2.0
Senast Uppdaterad 2024-01-15
Publiceringsdatum 2023-09-24
Betyg 5.00/5 Totalt 23 Betyg
Utvecklare youtbadblocker
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.youtubeadblocker.net/
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube adblocker",
    "description": "watch ads free videos on youtube",
    "version": "1.2.0",
    "manifest_version": 3,
    "icons": {
        "16": "YoutubeAdBlocker16x16.png",
        "48": "YoutubeAdBlocker48x48.png",
        "128": "YoutubeAdBlocker128x128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "YoutubeAdBlocker",
        "default_icon": "YoutubeAdBlocker16x16.png"
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}