Censor Me

Censor the internet by blocking certain words!

What is Censor Me?

Censor Me is a Chrome extension developed by mehulpillaidev25, and its main feature is "Censor the internet by blocking certain words!".

Extension Screenshots

screenshot
screenshot

Download Censor Me Extension CRX File

Download Censor Me extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
Official URL https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Description Censor the internet by blocking certain words!
File Size 16.42 KB
Installation Count 397
Current Version 1.0
Last Updated 2021-01-19
Publish Date 2021-01-19
Rating 3.17/5 Total 6 Ratings
Developer mehulpillaidev25
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}