etherscan-contract-downloader

Inject download button for verified contract on etherscan.io.

Was ist etherscan-contract-downloader?

etherscan-contract-downloader ist eine Chrome-Erweiterung, die von Monarth Sarvaiya entwickelt wurde, und ihr Hauptmerkmal ist "Inject download button for verified contract on etherscan.io.".

Erweiterungsscreenshots

screenshot

etherscan-contract-downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie etherscan-contract-downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        etherscan-contract-downloader is an extension which will inject download button for verified smart contracts on etherscan.io.                    

Grundlegende Informationen zur Erweiterung

Name etherscan-contract-downloader etherscan-contract-downloader
ID lgbmhlndlnehaakmmoiibkebophhmdpb
Offizielle URL https://chromewebstore.google.com/detail/etherscan-contract-downlo/lgbmhlndlnehaakmmoiibkebophhmdpb
Beschreibung Inject download button for verified contract on etherscan.io.
Dateigröße 14.6 KB
Installationsanzahl 60
Aktuelle Version 1.0.1
Letztes Update 2023-03-31
Veröffentlichungsdatum 2023-03-31
Entwickler Monarth Sarvaiya
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "etherscan-contract-downloader",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Inject download button for verified contract on etherscan.io.",
    "icons": {
        "16": ".\/source\/images\/icon16.png",
        "32": ".\/source\/images\/icon32.png",
        "48": ".\/source\/images\/icon48.png",
        "128": ".\/source\/images\/icon128.png"
    },
    "action": {
        "default_icon": ".\/source\/images\/icon128.png",
        "default_popup": ".\/source\/pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/etherscan.io\/address\/*",
                "https:\/\/etherscan.io\/token\/*"
            ],
            "js": [
                ".\/source\/js\/content-script.js"
            ]
        }
    ]
}