Opaque
Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!
Co je Opaque?
Opaque je rozšíření Chrome vyvinuté https://opaque.app, a jeho hlavní funkcí je „Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Opaque
Stáhněte si soubory rozšíření Opaque ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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!
Základní Informace o Rozšíření
Název | Opaque |
ID | fkmddlioggaohebmgmmhjfapibidoicd |
Oficiální URL | https://chromewebstore.google.com/detail/opaque/fkmddlioggaohebmgmmhjfapibidoicd |
Popis | Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures! |
Velikost souboru | 73.29 KB |
Počet instalací | 47 |
Aktuální Verze | 2.0.1 |
Poslední Aktualizace | 2022-10-13 |
Datum Vydání | 2022-09-18 |
Hodnocení | 4.88/5 Celkem 56 Hodnocení |
Vývojář | https://opaque.app |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://opaque.app/policies |
URL Stránky Nápovědy | https://github.com/OpaqueApp/ChromiumBrowserExtension/issues |
URL Stránky Zásad Ochrany Soukromí | https://opaque.app/policies |
Podporované Jazyky | 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": [] } ] } |