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": [] } ] } |