Peacock Tv Adblocker

The Peacock Tv Adblocker extension helps you to block ads on Peacock Tv website.

O que é Peacock Tv Adblocker?

Peacock Tv Adblocker é uma extensão do Chrome desenvolvida por Extension Master, e sua principal característica é "The Peacock Tv Adblocker extension helps you to block ads on Peacock Tv website.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Peacock Tv Adblocker

Baixe arquivos de extensão Peacock Tv Adblocker 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

                        Automatically blocks intros, recaps and block ads.

Peacock Tv Adblocker Extension to skip ads, intros and recaps when watching PeacockTV movies and series.

Disclaimer :  Peacock TV is a trademark of NBCUniversal Television and Streaming. This website & extension hold no association or affiliation with Peacock TV or any third-party companies.                    

Informações Básicas da Extensão

Nome Peacock Tv Adblocker Peacock Tv Adblocker
ID angaeplbfldpfbjalmmpljjdnhflgnmc
URL Oficial https://chrome.google.com/webstore/detail/peacock-tv-adblocker/angaeplbfldpfbjalmmpljjdnhflgnmc
Descrição The Peacock Tv Adblocker extension helps you to block ads on Peacock Tv website.
Tamanho do Arquivo 40.09 KB
Contagem de Instalações 107
Versão Atual 1.0.0
Última Atualização 2022-08-21
Data de Publicação 2022-08-19
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor Extension Master
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://docs.google.com/document/d/1gaVcIOwV7NnvyDRtd3eoOIQUYECyEYwLgBD_wHFXlHY
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "The Peacock Tv Adblocker extension helps you to block ads on Peacock Tv website.",
    "manifest_version": 3,
    "name": "Peacock Tv Adblocker",
    "version": "1.0.0",
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_icon": "icons\/32.png",
        "default_title": "Peacock Tv Adblocker",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "popup.html"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "unlimitedStorage",
        "notifications",
        "tabs",
        "gcm"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.peacocktv.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "ads.js"
            ],
            "matches": [
                "https:\/\/*.peacocktv.com\/*"
            ]
        }
    ]
}