Opaque
Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!
Opaque क्या है?
Opaque https://opaque.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Opaque एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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": [] } ] } |