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?…"입니다.
확장 프로그램 스크린샷
Breadcrumbs Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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 |
이메일 | [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" ] } |