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."입니다.
확장 프로그램 스크린샷
Peacock Tv Adblocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
ID | angaeplbfldpfbjalmmpljjdnhflgnmc |
공식 URL | 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\/*" ] } ] } |