Netflix Blur
Blur graphic content while watching Netflix TV Shows and Movies.
Wat is Netflix Blur?
Netflix Blur is een Chrome-extensie ontwikkeld door dutiyesh, en de belangrijkste functie is "Blur graphic content while watching Netflix TV Shows and Movies.".
Extensie Screenshots
Download het CRX-bestand van de extensie Netflix Blur
Download Netflix Blur-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
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.
Basisinformatie over de Extensie
Naam | Netflix Blur |
ID | aohjdecagmjlmhdbfibpifiogieheoim |
Officiële URL | https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim |
Beschrijving | Blur graphic content while watching Netflix TV Shows and Movies. |
Bestandsgrootte | 14.26 KB |
Aantal Installaties | 20 |
Huidige Versie | 1.1.0 |
Laatst Bijgewerkt | 2022-12-22 |
Publicatiedatum | 2021-01-24 |
Ontwikkelaar | dutiyesh |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/dutiyesh/netflix-blur |
URL van de Privacybeleid Pagina | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
Ondersteunde Talen | 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" ] } ] } |