Netflix Blur

Blur graphic content while watching Netflix TV Shows and Movies.

Co to jest Netflix Blur?

Netflix Blur to rozszerzenie Chrome opracowane przez dutiyesh, a jego główną funkcją jest „Blur graphic content while watching Netflix TV Shows and Movies.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Netflix Blur

Pobierz pliki rozszerzeń Netflix Blur w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Netflix Blur Netflix Blur
ID aohjdecagmjlmhdbfibpifiogieheoim
Oficjalny URL https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim
Opis Blur graphic content while watching Netflix TV Shows and Movies.
Rozmiar pliku 14.26 KB
Liczba instalacji 20
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2022-12-22
Data Publikacji 2021-01-24
Deweloper dutiyesh
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/dutiyesh/netflix-blur
Adres URL Strony Polityki Prywatności https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
Obsługiwane Języki 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"
            ]
        }
    ]
}