Etherscan Quick

Etherscan Quick

Access etherscan pages quickly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Etherscan Quick",
  "description": "Access etherscan pages quickly",
  "omnibox": {
    "keyword": "e"
  },
  "icons": {
    "16": "e.jpg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://etherscan.io/tx/*",
        "https://rinkeby.etherscan.io/tx/*"
      ]
    }
  ],
  "version": "1.1.4",
  "minimum_chrome_version": "9",
  "manifest_version": 2,
  "permissions": [
    "https://api.opensea.io/api/v1/asset_contract/*"
  ]
}