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!".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Opaque

قم بتنزيل ملفات الامتداد Opaque بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة المساعدة https://github.com/OpaqueApp/ChromiumBrowserExtension/issues
عنوان صفحة سياسة الخصوصية 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": []
        }
    ]
}