Currency Converter Widget - Exchange Rates

Currency Converter Widget - Exchange Rates

Currency conversion extension for Google Chrome and Edge browser that is based on the Chromium open-source project.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "1.7",
  "description": "__MSG_appDesc__",
  "default_locale": "en_US",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "https://www.currency.wiki/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Alt+C",
        "default": "Alt+C",
        "linux": "Alt+C",
        "mac": "Alt+C",
        "windows": "Alt+C"
      }
    }
  },
  "offline_enabled": true
}