YouTube™ Video AdBlocker Extension

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

O que é YouTube™ Video AdBlocker Extension?

YouTube™ Video AdBlocker Extension é uma extensão do Chrome desenvolvida por The Creative Joys, e sua principal característica é "Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube™ Video AdBlocker Extension

Baixe arquivos de extensão YouTube™ Video AdBlocker Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome YouTube™ Video AdBlocker Extension YouTube™ Video AdBlocker Extension
ID nomigebahjadndedfgpmnkbaekgjkipi
URL Oficial https://chromewebstore.google.com/detail/youtube-video-adblocker-e/nomigebahjadndedfgpmnkbaekgjkipi
Descrição Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.
Tamanho do Arquivo 22.71 KB
Contagem de Instalações 110
Versão Atual 1.0
Última Atualização 2019-01-08
Data de Publicação 2020-07-05
Desenvolvedor The Creative Joys
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}