Censor Words

This extension will censor the input bad words.

Censor Words là gì?

Censor Words là một tiện ích mở rộng Chrome được phát triển bởi Buzen Technologies, và tính năng chính của nó là "This extension will censor the input bad words.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Censor Words

Tải xuống các tệp mở rộng Censor Words dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Censor Words Censor Words
ID ggodicnebnbfhcmhepkcmjoahboalhpl
URL Chính Thức https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl
Mô tả This extension will censor the input bad words.
Kích Thước Tệp 46.63 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2022-05-24
Ngày Phát Hành 2022-05-21
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Buzen Technologies
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://buzentechnologies.com
URL Trang Trợ Giúp https://buzentechnologies.com/
URL Trang Chính Sách Bảo Mật https://buzentechnologies.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}