Etherscan Transaction Cancellation

This extension allows canceling pending transactions on Etherscan.

Etherscan Transaction Cancellation क्या है?

Etherscan Transaction Cancellation aquila.ua द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows canceling pending transactions on Etherscan."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Etherscan Transaction Cancellation एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}