Opaque

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

什么是Opaque?

Opaque是由https://opaque.app开发的Chrome扩展程序,该扩展的主要功能是“Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Opaque扩展crx文件

下载Opaque扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Opaque Opaque
ID fkmddlioggaohebmgmmhjfapibidoicd
官方URL https://chromewebstore.google.com/detail/opaque/fkmddlioggaohebmgmmhjfapibidoicd
简介 Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!
文件大小 73.29 KB
安装次数 47
当前版本 2.0.1
更新时间 2022-10-13
上架时间 2022-09-18
评分 4.88/5 共56次评分
开发者 https://opaque.app
电子邮箱 [email protected]
付费类型 free
扩展官网 https://opaque.app/policies
帮助页面URL https://github.com/OpaqueApp/ChromiumBrowserExtension/issues
隐私政策页面URL https://opaque.app/policies
支持的语言 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": []
        }
    ]
}