Clique Browser Extension

The Clique Extension is an interface for users to access and prove their private data to using Clique’s identity oracles.

Clique Browser Extensionคืออะไร?

Clique Browser Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://clique.social และคุณลักษณะหลักของมันคือ "The Clique Extension is an interface for users to access and prove their private data to using Clique’s identity oracles."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clique Browser Extension

ดาวน์โหลดไฟล์ส่วนขยาย Clique Browser Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The Clique extension bridges users to the advanced identity oracle technology of Clique. It empowers users to verify select private information they encounter in the browser to relevant third parties. Its primary function involves accessing your confidential credentials, like API keys, and securely encrypting them on your frontend. These encrypted credentials are then sent to Clique's identity oracles for data access.

Leveraging the capabilities of TEE, ZKP, and MPC, the entire process remains stringently privacy-centric from start to finish. This ensures that neither Clique nor any other entity can pry into your private credentials, data, or any associated information. Your data remains under your control, disclosed only based on your set preferences. In specific scenarios, the extension syncs with the Clique Attestor to log particular data statements on-chain. For instance, a statement might be: "This user has more than x followers on Twitter."                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Clique Browser Extension Clique Browser Extension
ID bejghfnahjjdffjmbfooochffgcgofok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clique-browser-extension/bejghfnahjjdffjmbfooochffgcgofok
คำอธิบาย The Clique Extension is an interface for users to access and prove their private data to using Clique’s identity oracles.
ขนาดไฟล์ 2.62 MB
จำนวนการติดตั้ง 60,000
เวอร์ชันปัจจุบัน 1.2.8
อัปเดตครั้งล่าสุด 2024-02-19
วันที่เผยแพร่ 2023-10-22
คะแนน 4.32/5 รวมทั้งหมด 65 คะแนน
ผู้พัฒนา https://clique.social
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://clique.social/
URL หน้านโยบายความเป็นส่วนตัว https://cliquedoc.blob.core.windows.net/browser-extension/GVRN%20Privacy%20Policy.pdf
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.2.8",
    "description": "The Clique Extension is an interface for users to access and prove their private data to using Clique\u2019s identity oracles.",
    "author": "https:\/\/clique.social\/",
    "icons": {
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "action": {
        "default_icon": "images\/logo128.png",
        "default_popup": "index.html",
        "default_title": "Clique"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.clique.social\/*",
                "http:\/\/localhost:8080\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "*:\/\/*.steampowered.com\/*",
        "*:\/\/*.steamcommunity.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.binance.com\/*",
        "*:\/\/*.kucoin.com\/*",
        "*:\/\/*.bybit.com\/*",
        "*:\/\/*.okx.com\/*",
        "*:\/\/*.substack.com\/*",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.instagram.com\/*",
        "*:\/\/*.epicgames.com\/*",
        "*:\/\/*.apple.com\/*",
        "*:\/\/*.google.com\/*",
        "*:\/\/*.twitch.tv\/*",
        "*:\/\/*.clique.social\/*",
        "*:\/\/*.clique.tech\/*"
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/index.js",
                "js\/inpage.js"
            ],
            "matches": [
                "*:\/\/*.steampowered.com\/*",
                "*:\/\/*.steamcommunity.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.binance.com\/*",
                "*:\/\/*.kucoin.com\/*",
                "*:\/\/*.bybit.com\/*",
                "*:\/\/*.okx.com\/*",
                "*:\/\/*.substack.com\/*",
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.instagram.com\/*",
                "*:\/\/*.epicgames.com\/*",
                "*:\/\/*.apple.com\/*",
                "*:\/\/*.google.com\/*",
                "*:\/\/*.twitch.tv\/*",
                "*:\/\/*.clique.social\/*",
                "*:\/\/*.clique.tech\/*",
                "http:\/\/localhost:8080\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webRequest",
        "storage",
        "background"
    ],
    "name": "Clique Browser Extension"
}