GasNow - ETH GasPrice forecast system

GasNow - ETH GasPrice forecast system

The coolest tool to estimate the gas price of Ethereum

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_pluginName__",
  "version": "0.5.1",
  "description": "__MSG_pluginDesc__",
  "author": "gasnow.org",
  "browser_action": {
    "default_icon": "images/icon48.png",
    "default_popup": "popup.html",
    "default_title": "GasNow"
  },
  "homepage_url": "https://www.gasnow.org",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "http://localhost:8545/",
    "https://*.infura.io/",
    "activeTab",
    "webRequest",
    "*://*.eth/",
    "notifications"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon48.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://connect.trezor.io/*/popup.html"
      ],
      "js": [
        "js/inject.js",
        "js/trezor-content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "web_accessible_resources": [
    "js/inpage.js"
  ]
}