Breadcrumbs Extension

Tired of tracking of Ethereum addresses with an excel spreadsheet? Wasting time loading webpages to follow an Ethereum whale?…

Breadcrumbs Extensionとは何ですか?

Breadcrumbs Extensionはhttps://breadcrumbs.appによって開発されたChromeの拡張機能で、その主な機能は「Tired of tracking of Ethereum addresses with an excel spreadsheet? Wasting time loading webpages to follow an Ethereum whale?…」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Breadcrumbs Extension拡張機能のCRXファイルをダウンロード

Breadcrumbs Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Tired of tracking of Ethereum addresses with an excel spreadsheet?  Wasting time loading webpages to follow an Ethereum whale?

Conveniently follow any Ethereum address in real-time.  Just click the "B", and pops-up the Ethereum addresses you care about, with their real-time balance.  

Want to investigate them further? Use the investigation tool to get more details on any Ethereum address's activity.

Breadcrumbs has identified 70 million Ethereum addresses for you.  Use the Breadcrumbs extension to view and comment on Ethereum and all ERC-20 addresses as they appear in your browsing experience.

Details provided include :
- Address owner 
- Address balance
- Number of transactions made
- Comments people have shared about that address

*Developer note:  Breadcrumbs requires access to read and change your web browser in order to recognize all Ethereum addresses that show up on a website, and automatically show you the owner of that address*                    

拡張機能の基本情報

名前 Breadcrumbs Extension Breadcrumbs Extension
ID dlnalaneihafdkdcekejdekiclgdghka
公式URL https://chromewebstore.google.com/detail/breadcrumbs-extension/dlnalaneihafdkdcekejdekiclgdghka
説明 Tired of tracking of Ethereum addresses with an excel spreadsheet? Wasting time loading webpages to follow an Ethereum whale?…
ファイルサイズ 400 KB
インストール数 136
現在のバージョン 2.0.11
最終更新日 2023-03-23
公開日 2020-07-21
評価 5.00/5 合計 4 レビュー
開発者 https://breadcrumbs.app
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.breadcrumbs.app
ヘルプページのURL https://www.breadcrumbs.app
プライバシーポリシーページのURL https://www.breadcrumbs.app/privacy-policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Breadcrumbs",
    "name": "Breadcrumbs Extension",
    "version": "2.0.11",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage",
        "cookies",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Breadcrumbs Extension"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'sha256-WDhufSqZOEoWULzS4Nwz11MNyHzZClVYbQ2JSt1vfkw'; object-src 'self'",
    "web_accessible_resources": [
        "main.css",
        "cdn\/bootstrap.min.css",
        "breadcrumbsheader.png",
        "icon.png"
    ]
}