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!”。
擴展截圖
下載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 |
ID | fkmddlioggaohebmgmmhjfapibidoicd |
官方網址 | 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": [] } ] } |