CoinValueGatherer

CoinValueGatherer

An app that gathers data from coin exchange platforms and displays it with MPH

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CoinValueGatherer",
  "version": "0.0.6",
  "manifest_version": 2,
  "description": "An app that gathers data from coin exchange platforms and displays it with MPH",
  "icons": {
    "16": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://miningpoolhub.com/?page=account&action=balances",
        "https://miningpoolhub.com/?page=account&action=balances"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/icon.png",
      "38": "icons/icon.png"
    },
    "default_title": "Extension Boilerplate",
    "default_popup": "popup.html"
  }
}