Bob Extension

Chrome Extension for Handshake

Was ist Bob Extension?

Bob Extension ist eine Chrome-Erweiterung, die von https://kyokan.io entwickelt wurde, und ihr Hauptmerkmal ist "Chrome Extension for Handshake".

Erweiterungsscreenshots

screenshot

Bob Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bob Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Bob Extension Bob Extension
ID ogcmjchbmdichlfelhmceldndgmgpcem
Offizielle URL https://chromewebstore.google.com/detail/bob-extension/ogcmjchbmdichlfelhmceldndgmgpcem
Beschreibung Chrome Extension for Handshake
Dateigröße 5.91 MB
Installationsanzahl 2,276
Aktuelle Version 0.6.0
Letztes Update 2022-09-22
Veröffentlichungsdatum 2021-05-06
Bewertung 4.43/5 Insgesamt 7 Bewertungen
Entwickler https://kyokan.io
Zahlungsart free
Erweiterungswebsite https://bobwallet.io/
Unterstützte Sprachen 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"
    ]
}