Censor Words
This extension will censor the input bad words.
Wat is Censor Words?
Censor Words is een Chrome-extensie ontwikkeld door Buzen Technologies, en de belangrijkste functie is "This extension will censor the input bad words.".
Extensie Screenshots
Download het CRX-bestand van de extensie Censor Words
Download Censor Words-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension will censor bad words. This is especially useful for parents to control what their kids read when browsing online websites.
Basisinformatie over de Extensie
Naam | Censor Words |
ID | ggodicnebnbfhcmhepkcmjoahboalhpl |
Officiële URL | https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl |
Beschrijving | This extension will censor the input bad words. |
Bestandsgrootte | 46.63 KB |
Aantal Installaties | 15 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2022-05-24 |
Publicatiedatum | 2022-05-21 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Buzen Technologies |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://buzentechnologies.com |
Help Pagina-URL | https://buzentechnologies.com/ |
URL van de Privacybeleid Pagina | https://buzentechnologies.com/privacy |
Ondersteunde Talen | 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" } ] } |