Peacock Tv Adblocker

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

什麼是Peacock Tv Adblocker?

Peacock Tv Adblocker是由Extension Master開發的Chrome擴展程式,該擴展的主要功能是“The Peacock Tv Adblocker extension helps you to block ads on Peacock Tv website.”。

擴展截圖

screenshot

下載Peacock Tv Adblocker擴展crx文件

下載Peacock Tv Adblocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Peacock Tv Adblocker Peacock Tv Adblocker
ID angaeplbfldpfbjalmmpljjdnhflgnmc
官方網址 https://chrome.google.com/webstore/detail/peacock-tv-adblocker/angaeplbfldpfbjalmmpljjdnhflgnmc
簡介 The Peacock Tv Adblocker extension helps you to block ads on Peacock Tv website.
檔案大小 40.09 KB
安裝次數 107
目前版本 1.0.0
更新時間 2022-08-21
上架時間 2022-08-19
評分 1.00/5 共 1 次評分
開發者 Extension Master
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://docs.google.com/document/d/1gaVcIOwV7NnvyDRtd3eoOIQUYECyEYwLgBD_wHFXlHY
支援的語言 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\/*"
            ]
        }
    ]
}