Etherscan Transaction Cancellation
This extension allows canceling pending transactions on Etherscan.
¿Qué es Etherscan Transaction Cancellation?
Etherscan Transaction Cancellation es una extensión de Chrome desarrollada por aquila.ua, y su función principal es "This extension allows canceling pending transactions on Etherscan.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Etherscan Transaction Cancellation
Descarga archivos de extensión Etherscan Transaction Cancellation en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | ifaphgaiehffeaminhgbdjlgpgmbjini |
URL Oficial | https://chrome.google.com/webstore/detail/etherscan-transaction-can/ifaphgaiehffeaminhgbdjlgpgmbjini |
Descripción | This extension allows canceling pending transactions on Etherscan. |
Tamaño del Archivo | 452 KB |
Cantidad de Instalaciones | 125 |
Versión Actual | 0.1.2 |
Última Actualización | 2020-12-21 |
Fecha de Publicación | 2020-03-29 |
Calificación | 1.00/5 Total de 1 Calificaciones |
Desarrollador | aquila.ua |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/aquiladev/etherscan-tx-cancellation |
URL de la Página de Ayuda | https://github.com/aquiladev/etherscan-tx-cancellation/issues |
Idiomas Soportados | 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" } } |