Bob Extension

Chrome Extension for Handshake

Qu'est-ce que Bob Extension ?

Bob Extension est une extension Chrome développée par https://kyokan.io, et sa fonction principale est "Chrome Extension for Handshake".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Bob Extension

Téléchargez les fichiers d'extension Bob Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Bob Extension Bob Extension
ID ogcmjchbmdichlfelhmceldndgmgpcem
URL Officiel https://chromewebstore.google.com/detail/bob-extension/ogcmjchbmdichlfelhmceldndgmgpcem
Description Chrome Extension for Handshake
Taille du Fichier 5.91 MB
Nombre d'Installations 2,276
Version Actuelle 0.6.0
Dernière Mise à Jour 2022-09-22
Date de Publication 2021-05-06
Évaluation 4.43/5 Total 7 Évaluations
Développeur https://kyokan.io
Type de Paiement free
Site Web de l'Extension https://bobwallet.io/
Langues Prises en Charge 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"
    ]
}