Etherscan Transaction Cancellation
This extension allows canceling pending transactions on Etherscan.
Co to jest Etherscan Transaction Cancellation?
Etherscan Transaction Cancellation to rozszerzenie Chrome opracowane przez aquila.ua, a jego główną funkcją jest „This extension allows canceling pending transactions on Etherscan.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Etherscan Transaction Cancellation
Pobierz pliki rozszerzeń Etherscan Transaction Cancellation w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ifaphgaiehffeaminhgbdjlgpgmbjini |
Oficjalny URL | https://chrome.google.com/webstore/detail/etherscan-transaction-can/ifaphgaiehffeaminhgbdjlgpgmbjini |
Opis | This extension allows canceling pending transactions on Etherscan. |
Rozmiar pliku | 452 KB |
Liczba instalacji | 125 |
Aktualna Wersja | 0.1.2 |
Ostatnia Aktualizacja | 2020-12-21 |
Data Publikacji | 2020-03-29 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | aquila.ua |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/aquiladev/etherscan-tx-cancellation |
Adres URL Strony Pomocy | https://github.com/aquiladev/etherscan-tx-cancellation/issues |
Obsługiwane Języki | 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" } } |