Profanity-Blocker

An advanced bad-word-blocker Chrome extension that censors bad words and websites.

Profanity-Blocker क्या है?

Profanity-Blocker https://profanityblocker.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An advanced bad-word-blocker Chrome extension that censors bad words and websites."।

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

screenshot
screenshot

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

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

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

                        This extension can detect double meaning words, offers an option to ignore and/or censor double meaning words. You can add and delete words or keep the default filter. Add a password authorization by going to the options menu, and toggle. You can keep records of the most words filtered!

After installing this extension you will be redirected to our website!                    

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

नाम Profanity-Blocker Profanity-Blocker
ID nfeoeimdfclfmipanclebdelkjdhdioj
आधिकारिक URL https://chromewebstore.google.com/detail/profanity-blocker/nfeoeimdfclfmipanclebdelkjdhdioj
विवरण An advanced bad-word-blocker Chrome extension that censors bad words and websites.
फ़ाइल का आकार 693 KB
स्थापना संख्या 214
वर्तमान संस्करण 1.5
अंतिम अपडेट 2022-08-29
प्रकाशन तिथि 2021-12-30
रेटिंग 4.50/5 कुल 8 रेटिंग्स
डेवलपर https://profanityblocker.org
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://profanityblocker.org
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Profanity-Blocker",
    "version": "1.5",
    "icons": {
        "128": "images\/logo128.png"
    },
    "description": "An advanced bad-word-blocker Chrome extension that censors bad words and websites.",
    "background": {
        "service_worker": "page.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/www.twitter.com\/*",
                "https:\/\/www.instagram.com\/*",
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "script-src": "'self' object-src"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "images\/logo.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/ajax.googleapis.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "warn\/warn.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "incognito": "split"
}