Etherscan Transaction Cancellation
This extension allows canceling pending transactions on Etherscan.
Etherscan Transaction Cancellation란 무엇입니까?
Etherscan Transaction Cancellation은(는) aquila.ua에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows canceling pending transactions on Etherscan."입니다.
확장 프로그램 스크린샷
Etherscan Transaction Cancellation 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Etherscan provides the ability to explore different data from Ethereum blockchain. User has the possibility to check all transactions and many different things which are related to smart contracts, event, blocks, etc. Etherscan is a good tool. In case if a user made a mistake and sets small fee, he can wait days until the transaction will be canceled automatically or mined, that is why it is good to have a tool which allows canceling transaction with an underpriced fee, which was stuck in a pool. This extension allows canceling pending transactions.
확장 프로그램 기본 정보
이름 | |
ID | ifaphgaiehffeaminhgbdjlgpgmbjini |
공식 URL | https://chrome.google.com/webstore/detail/etherscan-transaction-can/ifaphgaiehffeaminhgbdjlgpgmbjini |
설명 | This extension allows canceling pending transactions on Etherscan. |
파일 크기 | 452 KB |
설치 횟수 | 125 |
현재 버전 | 0.1.2 |
최근 업데이트 | 2020-12-21 |
출시 날짜 | 2020-03-29 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | aquila.ua |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/aquiladev/etherscan-tx-cancellation |
도움말 페이지 URL | https://github.com/aquiladev/etherscan-tx-cancellation/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Etherscan Transaction Cancellation", "version": "0.1.2", "manifest_version": 2, "description": "This extension allows canceling pending transactions on Etherscan.", "permissions": [ "declarativeContent" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "https:\/\/*.etherscan.io\/*" ], "run_at": "document_start" } ], "web_accessible_resources": [ "pageScript.js" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } }, "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } } |