Bitcoin Sneak Peek

Instantly see the balance of a Bitcoin address mentioned on any web page.

Vad är Bitcoin Sneak Peek?

Bitcoin Sneak Peek är en Chrome-tillägg utvecklad av https://www.squobble.com, och dess huvudfunktion är "Instantly see the balance of a Bitcoin address mentioned on any web page.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Bitcoin Sneak Peek-förlängningens CRX-fil

Ladda ner Bitcoin Sneak Peek-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension adds a small icon to the right of each Bitcoin address on every web site. Clicking it shows you the current balance of the address and the total received coins.

Data is pulled from Blockchain.info (or from blockexplorer.com, if Blockchain is down).

Source code: https://github.com/steven2358/BitcoinSneakPeek

Changelog: https://github.com/steven2358/BitcoinSneakPeek/commits/master

Orange juice fund: 1KLoepWkHVEMksdMCsu7nc5amfTvVb2qvk                    

Grundläggande Information om Tillägg

Namn Bitcoin Sneak Peek Bitcoin Sneak Peek
ID nmoioahfkdpfpjngcljhcphglbdppdmj
Officiell webbadress https://chromewebstore.google.com/detail/bitcoin-sneak-peek/nmoioahfkdpfpjngcljhcphglbdppdmj
Beskrivning Instantly see the balance of a Bitcoin address mentioned on any web page.
Filstorlek 14.81 KB
Antal Installationer 176
Aktuell Version 0.5
Senast Uppdaterad 2017-12-14
Publiceringsdatum 2017-12-14
Betyg 4.50/5 Totalt 16 Betyg
Utvecklare https://www.squobble.com
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bitcoin Sneak Peek",
    "version": "0.5",
    "description": "Instantly see the balance of a Bitcoin address mentioned on any web page.",
    "permissions": [
        "https:\/\/blockchain.info\/",
        "https:\/\/blockexplorer.com\/"
    ],
    "web_accessible_resources": [
        "i\/bitcoinsneakpeak32.png"
    ],
    "icons": {
        "128": "i\/logo128x128.png",
        "48": "i\/logo48x48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}