NetFlix AdBlock
Netflix adblock extension blocks ads on netflix.com
What is NetFlix AdBlock?
NetFlix AdBlock is a Chrome extension developed by Helpful Extensions, and its main feature is "Netflix adblock extension blocks ads on netflix.com".
Extension Screenshots
Download NetFlix AdBlock Extension CRX File
Download NetFlix AdBlock extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Netflix adblock extension for chrome blocks the ads on netflix.com. Now block ads on Youtube™.
Extension Basic Information
Name | |
ID | hpidkbbgclindolciegmahgighmjkoae |
Official URL | https://chromewebstore.google.com/detail/netflix-adblock/hpidkbbgclindolciegmahgighmjkoae |
Description | Netflix adblock extension blocks ads on netflix.com |
File Size | 56.14 KB |
Installation Count | 1,268 |
Current Version | 1.0.0 |
Last Updated | 2023-07-26 |
Publish Date | 2022-10-21 |
Rating | 1.80/5 Total 15 Ratings |
Developer | Helpful Extensions |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://sites.google.com/view/smart-picture-in-picture/privacy-policy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NetFlix AdBlock", "description": "Netflix adblock extension blocks ads on netflix.com", "version": "1.0.0", "manifest_version": 3, "icons": { "16": "images\/icons-16.png", "128": "images\/icons-128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ] } ], "action": { "default_icon": { "19": "images\/icons-19.png", "38": "images\/icons-38.png", "128": "images\/icons-128.png" }, "default_title": "NetFlix AdBlock", "default_popup": "popup.html" }, "permissions": [ "storage", "unlimitedStorage", "declarativeNetRequest", "tabs", "notifications", "gcm" ], "host_permissions": [ "*:\/\/*\/*" ] } |