Doge Pricer

Doge Pricer

Extension that pulls the last trade price of DOGE in BTC from Vircurex API.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Doge Pricer",
  "short_name": "Doge Pricer",
  "description": "Extension that pulls the last trade price of DOGE in BTC from Vircurex API.",
  "version": "2.9.1",
  "author": "Marcus McCurdy",
  "options_page": "options.html",
  "permissions": [
    "alarms",
    "http://pubapi.cryptsy.com/",
    "https://api.vircurex.com/api/*",
    "https://api.coindesk.com/v1/bpi/currentprice.json",
    "storage",
    "notifications"
  ],
  "content_security_policy": "script-src 'self' https://*.uservoice.com; object-src 'self'",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "lib/bluebird.js",
      "main.js",
      "eventPage.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_title": "DOGE Pricer",
    "default_popup": "popup.html"
  }
}