Netflix Blur
Blur graphic content while watching Netflix TV Shows and Movies.
Vad är Netflix Blur?
Netflix Blur är en Chrome-tillägg utvecklad av dutiyesh, och dess huvudfunktion är "Blur graphic content while watching Netflix TV Shows and Movies.".
Tilläggsskärmbilder
Ladda ner Netflix Blur-förlängningens CRX-fil
Ladda ner Netflix Blur-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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äggande Information om Tillägg
| Namn |   |  
| ID | aohjdecagmjlmhdbfibpifiogieheoim | 
| Officiell webbadress | https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim | 
| Beskrivning | Blur graphic content while watching Netflix TV Shows and Movies. | 
| Filstorlek | 14.26 KB | 
| Antal Installationer | 20 | 
| Aktuell Version | 1.1.0 | 
| Senast Uppdaterad | 2022-12-22 | 
| Publiceringsdatum | 2021-01-24 | 
| Utvecklare | dutiyesh | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Tilläggswebbplats | https://github.com/dutiyesh/netflix-blur | 
| URL till Sekretesspolicy Sidan | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md | 
| Stödda Språk | 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"
            ]
        }
    ]
}  |  |