YouTube™ Video AdBlocker Extension

Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.

Vad är YouTube™ Video AdBlocker Extension?

YouTube™ Video AdBlocker Extension är en Chrome-tillägg utvecklad av The Creative Joys, och dess huvudfunktion är "Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube™ Video AdBlocker Extension-förlängningens CRX-fil

Ladda ner YouTube™ Video AdBlocker Extension-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

                        * Removes YouTube™ video and text ads. 
* Works on all websites that contain a YouTube™ video.
* Also works with YouTube™ Music.                    

Grundläggande Information om Tillägg

Namn YouTube™ Video AdBlocker Extension YouTube™ Video AdBlocker Extension
ID nomigebahjadndedfgpmnkbaekgjkipi
Officiell webbadress https://chromewebstore.google.com/detail/youtube-video-adblocker-e/nomigebahjadndedfgpmnkbaekgjkipi
Beskrivning Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.
Filstorlek 22.71 KB
Antal Installationer 110
Aktuell Version 1.0
Senast Uppdaterad 2019-01-08
Publiceringsdatum 2020-07-05
Utvecklare The Creative Joys
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube\u2122 Video AdBlocker Extension",
    "short_name": "Ad Blocker",
    "version": "1.0",
    "description": "Removes all YouTube\u2122 video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.",
    "manifest_version": 2,
    "icons": {
        "19": "images\/icon19.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "adBlockerBg.js"
        ]
    },
    "page_action": {
        "default_title": "YouTube\u2122 Video AdBlocker",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "adBlockerYt.js"
            ],
            "run_at": "document_end"
        }
    ]
}