YouTube™ Video AdBlocker Extension

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

Qu'est-ce que YouTube™ Video AdBlocker Extension ?

YouTube™ Video AdBlocker Extension est une extension Chrome développée par The Creative Joys, et sa fonction principale est "Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube™ Video AdBlocker Extension

Téléchargez les fichiers d'extension YouTube™ Video AdBlocker Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom YouTube™ Video AdBlocker Extension YouTube™ Video AdBlocker Extension
ID nomigebahjadndedfgpmnkbaekgjkipi
URL Officiel https://chromewebstore.google.com/detail/youtube-video-adblocker-e/nomigebahjadndedfgpmnkbaekgjkipi
Description Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.
Taille du Fichier 22.71 KB
Nombre d'Installations 110
Version Actuelle 1.0
Dernière Mise à Jour 2019-01-08
Date de Publication 2020-07-05
Développeur The Creative Joys
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}