Naughty Language Filter

Filters out obscene words on webpages and optionally mutes profanity on Netflix.

Naughty Language Filter क्या है?

Naughty Language Filter thedevcaleb द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filters out obscene words on webpages and optionally mutes profanity on Netflix."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This "Naughty Language Filter" filters out obscene text on webpages and even has the additional feature of muting profanity in Netflix (by utilizing Netflix's subtitles). Essentially, a profanity filter that purifies your window into the internet, one word at a time!

●  Designed to have virtually no negative impact on performance.
●  The built-in bad word list contains most all words that would be considered as "bad words".
●  The Netflix video muting works by processing Netflix's subtitles (subtitles must be turned on within Netflix for this to work, but the extension will hide the subtitles via magic!). The Netflix video muting will not be perfect because it is directly dependent on the subtitles being accurate and timely.
●  Words can be added or deleted from the profanity word list as desired.
●  Profanity filtering can be turned off on a per-website basis.
●  Customize how words will be filtered (e.g. will it look like *****, or l----, or FILTERED). You choose!

The obscene text filtering works with essentially any webpage: Reddit, Youtube, Soundcloud, Google, Facebook, ... basically any website!                    

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

नाम Naughty Language Filter Naughty Language Filter
ID mlhblfcjgnoohcjkcmighdibcnaifmgo
आधिकारिक URL https://chromewebstore.google.com/detail/naughty-language-filter/mlhblfcjgnoohcjkcmighdibcnaifmgo
विवरण Filters out obscene words on webpages and optionally mutes profanity on Netflix.
फ़ाइल का आकार 205 KB
स्थापना संख्या 443
वर्तमान संस्करण 1.07
अंतिम अपडेट 2018-04-23
प्रकाशन तिथि 2018-04-23
रेटिंग 4.20/5 कुल 5 रेटिंग्स
डेवलपर thedevcaleb
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Naughty Language Filter",
    "description": "Filters out obscene words on webpages and optionally mutes profanity on Netflix.",
    "version": "1.07",
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab"
    ]
}