Bitcoin Auto-Converter

Bitcoin Auto-Converter

Finds the BTC values on any website and displays the live conversion to your currency.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bitcoin Auto-Converter",
  "version": "1.1.5",
  "description": "Finds the BTC values on any website and displays the live conversion to your currency.",
  "short_name": "BAC",
  "browser_action": {
    "default_icon": "images/128.png",
    "default_popup": "options.html",
    "default_title": "Loading..."
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "functions.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "content.css"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "functions.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}