Opaque
Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!
Was ist Opaque?
Opaque ist eine Chrome-Erweiterung, die von https://opaque.app entwickelt wurde, und ihr Hauptmerkmal ist "Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!".
Erweiterungsscreenshots
Opaque-Erweiterungs-CRX-Datei herunterladen
Laden Sie Opaque-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Opaque |
ID | fkmddlioggaohebmgmmhjfapibidoicd |
Offizielle URL | https://chromewebstore.google.com/detail/opaque/fkmddlioggaohebmgmmhjfapibidoicd |
Beschreibung | Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures! |
Dateigröße | 73.29 KB |
Installationsanzahl | 47 |
Aktuelle Version | 2.0.1 |
Letztes Update | 2022-10-13 |
Veröffentlichungsdatum | 2022-09-18 |
Bewertung | 4.88/5 Insgesamt 56 Bewertungen |
Entwickler | https://opaque.app |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://opaque.app/policies |
Hilfeseite URL | https://github.com/OpaqueApp/ChromiumBrowserExtension/issues |
URL der Datenschutzrichtlinien-Seite | https://opaque.app/policies |
Unterstützte Sprachen | 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": [] } ] } |