Censor Words
This extension will censor the input bad words.
Hvad er Censor Words?
Censor Words er en Chrome-udvidelse udviklet af Buzen Technologies, og dens hovedfunktion er "This extension will censor the input bad words.".
Udvidelsesskærmbilleder
Download Censor Words-udvidelses-CRX-fil
Download Censor Words-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension will censor bad words. This is especially useful for parents to control what their kids read when browsing online websites.
Grundlæggende oplysninger om udvidelsen
Navn | Censor Words |
ID | ggodicnebnbfhcmhepkcmjoahboalhpl |
Officiel URL | https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl |
Beskrivelse | This extension will censor the input bad words. |
Filstørrelse | 46.63 KB |
Antal Installationer | 15 |
Nuværende Version | 1.1 |
Senest Opdateret | 2022-05-24 |
Udgivelsesdato | 2022-05-21 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | Buzen Technologies |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://buzentechnologies.com |
Hjælpeside-URL | https://buzentechnologies.com/ |
URL til Fortrolighedspolitik Side | https://buzentechnologies.com/privacy |
Understøttede Sprog | 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" } ] } |