Opaque

Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!

Opaque là gì?

Opaque là một tiện ích mở rộng Chrome được phát triển bởi https://opaque.app, và tính năng chính của nó là "Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        Browser extension to securely blur sensitive text and values. Broad set of options (plain text, RegEx, Wildcard, and CSS selectors) to find explicit or patterns of text and values to blur. Built-in Quick Select options for GUID, Domain Names, and Emails. Great for screen sharing and screen captures!                    

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

Tên Opaque Opaque
ID fkmddlioggaohebmgmmhjfapibidoicd
URL Chính Thức https://chromewebstore.google.com/detail/opaque/fkmddlioggaohebmgmmhjfapibidoicd
Mô tả Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!
Kích Thước Tệp 73.29 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2022-10-13
Ngày Phát Hành 2022-09-18
Đánh Giá 4.88/5 Tổng số 56 Đánh Giá
Nhà Phát Triển https://opaque.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://opaque.app/policies
URL Trang Trợ Giúp https://github.com/OpaqueApp/ChromiumBrowserExtension/issues
URL Trang Chính Sách Bảo Mật https://opaque.app/policies
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Opaque",
    "description": "Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!",
    "version": "2.0.1",
    "manifest_version": 3,
    "icons": {
        "128": "\/img\/logo.png"
    },
    "action": {
        "default_popup": "\/pages\/popup\/index.html",
        "default_icons": {
            "16": "\/img\/logo.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "\/js\/content.js"
            ],
            "css": [
                "\/css\/content.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ]
}