Convert (crypto)currency

Convert (crypto)currency

Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Convert (crypto)currency",
  "description": "Context menu option to convert selected crypto/fiat value - displays the result in a simple tooltip.",
  "version": "1.4",
  "icons": {
    "128": "exchange.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "createMenu.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "api.js",
        "crypto-context.js"
      ]
    }
  ],
  "permissions": [
    "https://api.coinbase.com/*",
    "contextMenus",
    "storage",
    "activeTab"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}