Censor Words

This extension will censor the input bad words.

Censor Words क्या है?

Censor Words Buzen Technologies द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will censor the input bad words."।

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

screenshot
screenshot
screenshot

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

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

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

                        This extension will censor bad words. This is especially useful for parents to control what their kids read when browsing online websites.                    

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

नाम Censor Words Censor Words
ID ggodicnebnbfhcmhepkcmjoahboalhpl
आधिकारिक URL https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl
विवरण This extension will censor the input bad words.
फ़ाइल का आकार 46.63 KB
स्थापना संख्या 15
वर्तमान संस्करण 1.1
अंतिम अपडेट 2022-05-24
प्रकाशन तिथि 2022-05-21
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Buzen Technologies
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://buzentechnologies.com
सहायता पृष्ठ URL https://buzentechnologies.com/
गोपनीयता नीति पृष्ठ URL https://buzentechnologies.com/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Censor Words",
    "description": "This extension will censor the input bad words.",
    "version": "1.1",
    "icons": {
        "16": "\/icons\/icon-16.png",
        "32": "\/icons\/icon-32.png",
        "48": "\/icons\/icon-48.png",
        "128": "\/icons\/icon-128.png"
    },
    "action": {
        "default_title": "Censor Words",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/icon-16.png",
            "24": "\/icons\/icon-24.png",
            "32": "\/icons\/icon-32.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}