Opaque
Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!
Opaqueคืออะไร?
Opaque เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://opaque.app และคุณลักษณะหลักของมันคือ "Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Opaque
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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": [] } ] } |