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.」です。

拡張機能のスクリーンショット

screenshot
screenshot

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.                    

拡張機能の基本情報

名前 Etherscan Transaction Cancellation Etherscan Transaction Cancellation
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
Eメール [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"
    }
}