Peacock Tv Adblocker

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

Wat is Peacock Tv Adblocker?

Peacock Tv Adblocker is een Chrome-extensie ontwikkeld door Extension Master, en de belangrijkste functie is "The Peacock Tv Adblocker extension helps you to block ads on Peacock Tv website.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Peacock Tv Adblocker

Download Peacock Tv Adblocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Peacock Tv Adblocker Peacock Tv Adblocker
ID angaeplbfldpfbjalmmpljjdnhflgnmc
Officiële URL https://chrome.google.com/webstore/detail/peacock-tv-adblocker/angaeplbfldpfbjalmmpljjdnhflgnmc
Beschrijving The Peacock Tv Adblocker extension helps you to block ads on Peacock Tv website.
Bestandsgrootte 40.09 KB
Aantal Installaties 107
Huidige Versie 1.0.0
Laatst Bijgewerkt 2022-08-21
Publicatiedatum 2022-08-19
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Extension Master
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://docs.google.com/document/d/1gaVcIOwV7NnvyDRtd3eoOIQUYECyEYwLgBD_wHFXlHY
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}