Ethereum Gas Price Extension

Ethereum Gas Price Extension

A simple free utility for your browser that helps you decide how much to spend on your next transaction.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ethereum Gas Price Extension",
  "version": "2.0.3",
  "description": "A simple free utility for your browser that helps you decide how much to spend on your next transaction.",
  "manifest_version": 2,
  "background": {
    "page": "src/background.html",
    "persistent": false
  },
  "icons": {
    "16": "static/icon16.png",
    "48": "static/icon48.png",
    "128": "static/icon128.png"
  },
  "browser_action": {
    "default_icon": "static/icon.png",
    "default_title": "Ethereum Gas Price",
    "default_popup": "src/popup.html"
  },
  "permissions": [
    "alarms",
    "storage"
  ],
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": true
  }
}