Etherscan Transaction Cancellation
This extension allows canceling pending transactions on Etherscan.
Что такое Etherscan Transaction Cancellation?
Etherscan Transaction Cancellation - это расширение Chrome, разработанное aquila.ua, и его основная функция - "This extension allows canceling pending transactions on Etherscan.".
Снимки экрана расширения
Скачать файл CRX расширения Etherscan Transaction Cancellation
Скачайте файлы расширений 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 |
Официальный 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" } } |