Netflix Blur
Blur graphic content while watching Netflix TV Shows and Movies.
Hvad er Netflix Blur?
Netflix Blur er en Chrome-udvidelse udviklet af dutiyesh, og dens hovedfunktion er "Blur graphic content while watching Netflix TV Shows and Movies.".
Udvidelsesskærmbilleder
Download Netflix Blur-udvidelses-CRX-fil
Download Netflix Blur-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Netflix Blur |
ID | aohjdecagmjlmhdbfibpifiogieheoim |
Officiel URL | https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim |
Beskrivelse | Blur graphic content while watching Netflix TV Shows and Movies. |
Filstørrelse | 14.26 KB |
Antal Installationer | 20 |
Nuværende Version | 1.1.0 |
Senest Opdateret | 2022-12-22 |
Udgivelsesdato | 2021-01-24 |
Udvikler | dutiyesh |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/dutiyesh/netflix-blur |
URL til Fortrolighedspolitik Side | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
Understøttede Sprog | 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" ] } ] } |