Netflix Blur
Blur graphic content while watching Netflix TV Shows and Movies.
Co je Netflix Blur?
Netflix Blur je rozšíření Chrome vyvinuté dutiyesh, a jeho hlavní funkcí je „Blur graphic content while watching Netflix TV Shows and Movies.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Netflix Blur
Stáhněte si soubory rozšíření Netflix Blur ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Netflix Blur |
ID | aohjdecagmjlmhdbfibpifiogieheoim |
Oficiální URL | https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim |
Popis | Blur graphic content while watching Netflix TV Shows and Movies. |
Velikost souboru | 14.26 KB |
Počet instalací | 20 |
Aktuální Verze | 1.1.0 |
Poslední Aktualizace | 2022-12-22 |
Datum Vydání | 2021-01-24 |
Vývojář | dutiyesh |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/dutiyesh/netflix-blur |
URL Stránky Zásad Ochrany Soukromí | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
Podporované Jazyky | 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" ] } ] } |