Netflix Blur
Blur graphic content while watching Netflix TV Shows and Movies.
What is Netflix Blur?
Netflix Blur is a Chrome extension developed by dutiyesh, and its main feature is "Blur graphic content while watching Netflix TV Shows and Movies.".
Extension Screenshots
Download Netflix Blur Extension CRX File
Download Netflix Blur 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 Blur is a chrome extension to blur graphic content while watching Netflix TV Shows and Movies. How to use? - Blur content by pressing Blur button from Player control icons or by pressing Keyboard B key.
Extension Basic Information
Name | Netflix Blur |
ID | aohjdecagmjlmhdbfibpifiogieheoim |
Official URL | https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim |
Description | Blur graphic content while watching Netflix TV Shows and Movies. |
File Size | 14.26 KB |
Installation Count | 20 |
Current Version | 1.1.0 |
Last Updated | 2022-12-22 |
Publish Date | 2021-01-24 |
Developer | dutiyesh |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/dutiyesh/netflix-blur |
Privacy Policy Page URL | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Netflix Blur", "version": "1.1.0", "description": "Blur graphic content while watching Netflix TV Shows and Movies.", "icons": { "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/www.netflix.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "run_at": "document_end", "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] } ] } |