Censor Words

This extension will censor the input bad words.

Vad är Censor Words?

Censor Words är en Chrome-tillägg utvecklad av Buzen Technologies, och dess huvudfunktion är "This extension will censor the input bad words.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Censor Words-förlängningens CRX-fil

Ladda ner Censor Words-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Censor Words Censor Words
ID ggodicnebnbfhcmhepkcmjoahboalhpl
Officiell webbadress https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl
Beskrivning This extension will censor the input bad words.
Filstorlek 46.63 KB
Antal Installationer 15
Aktuell Version 1.1
Senast Uppdaterad 2022-05-24
Publiceringsdatum 2022-05-21
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Buzen Technologies
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://buzentechnologies.com
Hjälpsida URL https://buzentechnologies.com/
URL till Sekretesspolicy Sidan https://buzentechnologies.com/privacy
Stödda Språk 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"
        }
    ]
}