Censor Words

This extension will censor the input bad words.

What is Censor Words?

Censor Words is a Chrome extension developed by Buzen Technologies, and its main feature is "This extension will censor the input bad words.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Censor Words Extension CRX File

Download Censor Words 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

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

Extension Basic Information

Name Censor Words Censor Words
ID ggodicnebnbfhcmhepkcmjoahboalhpl
Official URL https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl
Description This extension will censor the input bad words.
File Size 46.63 KB
Installation Count 15
Current Version 1.1
Last Updated 2022-05-24
Publish Date 2022-05-21
Rating 5.00/5 Total 2 Ratings
Developer Buzen Technologies
Email [email protected]
Payment Type free
Extension Website https://buzentechnologies.com
Help Page URL https://buzentechnologies.com/
Privacy Policy Page URL https://buzentechnologies.com/privacy
Supported Languages 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"
        }
    ]
}