Bob Extension

Chrome Extension for Handshake

什麼是Bob Extension?

Bob Extension是由https://kyokan.io開發的Chrome擴展程式,該擴展的主要功能是“Chrome Extension for Handshake”。

擴展截圖

screenshot

下載Bob Extension擴展crx文件

下載Bob Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A Handshake wallet in your browser. 

Bob Extension runs a wallet in your extension, and enables DNS resolving through the Handshake DNS.

It injects a Bob3 object into every website and allow dapps to interact with your wallet through a pop-up confirmation.

Bob Extension will allow you to manage your Handshake TLDs, and enable you to login to dapps using your Handshake TLDs.

https://github.com/kyokan/bob-extension                    

擴展基本資訊

名稱 Bob Extension Bob Extension
ID ogcmjchbmdichlfelhmceldndgmgpcem
官方網址 https://chromewebstore.google.com/detail/bob-extension/ogcmjchbmdichlfelhmceldndgmgpcem
簡介 Chrome Extension for Handshake
檔案大小 5.91 MB
安裝次數 2,276
目前版本 0.6.0
更新時間 2022-09-22
上架時間 2021-05-06
評分 4.43/5 共 7 次評分
開發者 https://kyokan.io
付費類型 free
擴展官網 https://bobwallet.io/
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bob Extension",
    "description": "Chrome Extension for Handshake",
    "version": "0.6.0",
    "omnibox": {
        "keyword": "bob"
    },
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/backgroundPage.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "webRequest",
        "webRequestBlocking",
        "proxy",
        "storage",
        "unlimitedStorage",
        ""
    ],
    "web_accessible_resources": [
        "js\/bob3.js",
        "wasm\/sql-wasm.wasm"
    ]
}