Opaque

Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!

Co to jest Opaque?

Opaque to rozszerzenie Chrome opracowane przez https://opaque.app, a jego główną funkcją jest „Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Opaque

Pobierz pliki rozszerzeń Opaque w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Opaque Opaque
ID fkmddlioggaohebmgmmhjfapibidoicd
Oficjalny URL https://chromewebstore.google.com/detail/opaque/fkmddlioggaohebmgmmhjfapibidoicd
Opis Browser extension to safely blur sensitive text and values. Great for screen sharing and screen captures!
Rozmiar pliku 73.29 KB
Liczba instalacji 47
Aktualna Wersja 2.0.1
Ostatnia Aktualizacja 2022-10-13
Data Publikacji 2022-09-18
Ocena 4.88/5 Łącznie 56 Oceny
Deweloper https://opaque.app
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://opaque.app/policies
Adres URL Strony Pomocy https://github.com/OpaqueApp/ChromiumBrowserExtension/issues
Adres URL Strony Polityki Prywatności https://opaque.app/policies
Obsługiwane Języki 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": []
        }
    ]
}