Netflix Blur

Blur graphic content while watching Netflix TV Shows and Movies.

Netflix Blur क्या है?

Netflix Blur dutiyesh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blur graphic content while watching Netflix TV Shows and Movies."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Netflix Blur एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Netflix Blur Netflix Blur
ID aohjdecagmjlmhdbfibpifiogieheoim
आधिकारिक URL https://chromewebstore.google.com/detail/netflix-blur/aohjdecagmjlmhdbfibpifiogieheoim
विवरण Blur graphic content while watching Netflix TV Shows and Movies.
फ़ाइल का आकार 14.26 KB
स्थापना संख्या 20
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2022-12-22
प्रकाशन तिथि 2021-01-24
डेवलपर dutiyesh
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dutiyesh/netflix-blur
गोपनीयता नीति पृष्ठ URL https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
समर्थित भाषाएँ 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"
            ]
        }
    ]
}