Censor Me

Censor the internet by blocking certain words!

Censor Me là gì?

Censor Me là một tiện ích mở rộng Chrome được phát triển bởi mehulpillaidev25, và tính năng chính của nó là "Censor the internet by blocking certain words!".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Censor Me 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

                        Chrome extension that should censor keywords on the current page.
- Enter any keywords you would like to block on websites and delete them later.
- Highlight a word and click the "add word" option on the context menu to quickly censor a word.
- Block websites from popup to stop the extension script from running on those sites.
- A global off switch that turns off the extension's functionality.                    

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

Tên Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
URL Chính Thức https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Mô tả Censor the internet by blocking certain words!
Kích Thước Tệp 16.42 KB
Số Lần Cài Đặt 397
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-01-19
Ngày Phát Hành 2021-01-19
Đánh Giá 3.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển mehulpillaidev25
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Censor Me",
    "version": "1.0",
    "description": "Censor the internet by blocking certain words!",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "startup.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}