Redact The Web

Extension that redacts text on the web

Redact The Web là gì?

Redact The Web là một tiện ích mở rộng Chrome được phát triển bởi deadcoder0904, và tính năng chính của nó là "Extension that redacts text on the web".

Ả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 Redact The Web

Tải xuống các tệp mở rộng Redact The Web 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 allows you to redact the text on the web.

It works on every website.

The code is completely open-source and can be found on Github → https://github.com/deadcoder0904/redact-the-web

**Changelog**

v1.0.1 - Bundled font with the extension & now supports Cyrillic (Russians and Ukrainians) symbols 

v1.0.0 - Initial Release                    

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

Tên Redact The Web Redact The Web
ID hbinnehbfknmojoelfipldnpcekbmbce
URL Chính Thức https://chromewebstore.google.com/detail/redact-the-web/hbinnehbfknmojoelfipldnpcekbmbce
Mô tả Extension that redacts text on the web
Kích Thước Tệp 18.22 KB
Số Lần Cài Đặt 107
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2019-10-05
Ngày Phát Hành 2019-10-04
Nhà Phát Triển deadcoder0904
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/deadcoder0904/redact-the-web
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Redact The Web",
    "offline_enabled": true,
    "version": "1.0.1",
    "description": "Extension that redacts text on the web",
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "38": "icon38.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "style.css",
        "Redacted-Regular.ttf"
    ],
    "permissions": [
        "activeTab"
    ]
}