Opaque
Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!
Cos'è Opaque?
Opaque è un'estensione di Chrome sviluppata da https://opaque.app, e la sua funzione principale è "Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Opaque
Scarica i file di estensione Opaque in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Opaque |
ID | fkmddlioggaohebmgmmhjfapibidoicd |
URL Ufficiale | https://chromewebstore.google.com/detail/opaque/fkmddlioggaohebmgmmhjfapibidoicd |
Descrizione | Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures! |
Dimensione del File | 73.29 KB |
Conteggio Installazioni | 47 |
Versione Corrente | 2.0.1 |
Ultimo Aggiornamento | 2022-10-13 |
Data di Pubblicazione | 2022-09-18 |
Valutazione | 4.88/5 Totale 56 Valutazioni |
Sviluppatore | https://opaque.app |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://opaque.app/policies |
URL della Pagina di Aiuto | https://github.com/OpaqueApp/ChromiumBrowserExtension/issues |
URL della Pagina della Politica sulla Privacy | https://opaque.app/policies |
Lingue Supportate | 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": [] } ] } |