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文件
下載Etherscan Transaction Cancellation擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |