Exchange Rates

Exchange Rates

Rates

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Exchange Rates",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Rates",
  "background": {
    "scripts": [
      "index.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Exchange RATES",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}