Opaque

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

What is Opaque?

Opaque is a Chrome extension developed by https://opaque.app, and its main feature is "Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Opaque Extension CRX File

Download Opaque extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Opaque Opaque
ID fkmddlioggaohebmgmmhjfapibidoicd
Official URL https://chromewebstore.google.com/detail/opaque/fkmddlioggaohebmgmmhjfapibidoicd
Description Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!
File Size 73.29 KB
Installation Count 47
Current Version 2.0.1
Last Updated 2022-10-13
Publish Date 2022-09-18
Rating 4.88/5 Total 56 Ratings
Developer https://opaque.app
Email [email protected]
Payment Type free
Extension Website https://opaque.app/policies
Help Page URL https://github.com/OpaqueApp/ChromiumBrowserExtension/issues
Privacy Policy Page URL https://opaque.app/policies
Supported Languages 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": []
        }
    ]
}