Bob Extension

Chrome Extension for Handshake

Cos'è Bob Extension?

Bob Extension è un'estensione di Chrome sviluppata da https://kyokan.io, e la sua funzione principale è "Chrome Extension for Handshake".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Bob Extension

Scarica i file di estensione Bob Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Bob Extension Bob Extension
ID ogcmjchbmdichlfelhmceldndgmgpcem
URL Ufficiale https://chromewebstore.google.com/detail/bob-extension/ogcmjchbmdichlfelhmceldndgmgpcem
Descrizione Chrome Extension for Handshake
Dimensione del File 5.91 MB
Conteggio Installazioni 2,276
Versione Corrente 0.6.0
Ultimo Aggiornamento 2022-09-22
Data di Pubblicazione 2021-05-06
Valutazione 4.43/5 Totale 7 Valutazioni
Sviluppatore https://kyokan.io
Tipo di Pagamento free
Sito Web dell'Estensione https://bobwallet.io/
Lingue Supportate 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"
    ]
}