Censor Words
This extension will censor the input bad words.
Was ist Censor Words?
Censor Words ist eine Chrome-Erweiterung, die von Buzen Technologies entwickelt wurde, und ihr Hauptmerkmal ist "This extension will censor the input bad words.".
Erweiterungsscreenshots
Censor Words-Erweiterungs-CRX-Datei herunterladen
Laden Sie Censor Words-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension will censor bad words. This is especially useful for parents to control what their kids read when browsing online websites.
Grundlegende Informationen zur Erweiterung
Name | Censor Words |
ID | ggodicnebnbfhcmhepkcmjoahboalhpl |
Offizielle URL | https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl |
Beschreibung | This extension will censor the input bad words. |
Dateigröße | 46.63 KB |
Installationsanzahl | 15 |
Aktuelle Version | 1.1 |
Letztes Update | 2022-05-24 |
Veröffentlichungsdatum | 2022-05-21 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Buzen Technologies |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://buzentechnologies.com |
Hilfeseite URL | https://buzentechnologies.com/ |
URL der Datenschutzrichtlinien-Seite | https://buzentechnologies.com/privacy |
Unterstützte Sprachen | 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" } ] } |