etherscan-contract-downloader

etherscan-contract-downloader

Inject download button for verified contract on etherscan.io.

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}