Etherscan Transaction Cancellation
This extension allows canceling pending transactions on Etherscan.
Etherscan Transaction Cancellation là gì?
Etherscan Transaction Cancellation là một tiện ích mở rộng Chrome được phát triển bởi aquila.ua, và tính năng chính của nó là "This extension allows canceling pending transactions on Etherscan.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Etherscan Transaction Cancellation
Tải xuống các tệp mở rộng Etherscan Transaction Cancellation dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ifaphgaiehffeaminhgbdjlgpgmbjini |
URL Chính Thức | https://chrome.google.com/webstore/detail/etherscan-transaction-can/ifaphgaiehffeaminhgbdjlgpgmbjini |
Mô tả | This extension allows canceling pending transactions on Etherscan. |
Kích Thước Tệp | 452 KB |
Số Lần Cài Đặt | 125 |
Phiên Bản Hiện Tại | 0.1.2 |
Cập Nhật Lần Cuối | 2020-12-21 |
Ngày Phát Hành | 2020-03-29 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | aquila.ua |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/aquiladev/etherscan-tx-cancellation |
URL Trang Trợ Giúp | https://github.com/aquiladev/etherscan-tx-cancellation/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |