Netflix profanity filter

By Frederik de Vree

Netflix profanity filter क्या है?

Netflix profanity filter frederikdevree द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "By Frederik de Vree"।

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

screenshot
screenshot

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

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

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

                        This extension filters profanity words in Netflix. It both censors the subtitles and mutes the audio on the appropriate sentence. With customizable profanity word list.

To use this, subtitles in Netflix need to be turned on. Because the filtering is based on the subtitles, make sure you add profanity words to the list in the language of the subtitles.                    

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

नाम Netflix profanity filter Netflix profanity filter
ID maljbdebgffplibkcchbjahfjhppkpmp
आधिकारिक URL https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp
विवरण By Frederik de Vree
फ़ाइल का आकार 71.38 KB
स्थापना संख्या 5,613
वर्तमान संस्करण 2.2.2
अंतिम अपडेट 2015-12-31
प्रकाशन तिथि 2015-12-31
रेटिंग 3.17/5 कुल 71 रेटिंग्स
डेवलपर frederikdevree
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix profanity filter",
    "version": "2.2.2",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "By Frederik de Vree",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}