Censor Me

Censor the internet by blocking certain words!

Censor Me क्या है?

Censor Me mehulpillaidev25 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Censor the internet by blocking certain words!"।

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

screenshot
screenshot

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

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

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

                        Chrome extension that should censor keywords on the current page.
- Enter any keywords you would like to block on websites and delete them later.
- Highlight a word and click the "add word" option on the context menu to quickly censor a word.
- Block websites from popup to stop the extension script from running on those sites.
- A global off switch that turns off the extension's functionality.                    

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

नाम Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
आधिकारिक URL https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
विवरण Censor the internet by blocking certain words!
फ़ाइल का आकार 16.42 KB
स्थापना संख्या 397
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-01-19
प्रकाशन तिथि 2021-01-19
रेटिंग 3.17/5 कुल 6 रेटिंग्स
डेवलपर mehulpillaidev25
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Censor Me",
    "version": "1.0",
    "description": "Censor the internet by blocking certain words!",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "startup.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}