Currency Converter PRO

Currency Converter PRO

Currency converter for Google Chrome fast and easy to use.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Currency Converter PRO",
  "version": "3.12",
  "default_locale": "en",
  "description": "Currency converter for Google Chrome fast and easy to use.",
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://twitter.com/*",
        "*://*.linkedin.com/*"
      ],
      "js": [
        "js/content-script.bundle.js"
      ]
    }
  ],
  "icons": {
    "128": "128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*.facebook.com/*",
    "*://twitter.com/*",
    "*://*.linkedin.com/*"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+W",
        "chromeos": "Alt+W",
        "linux": "Alt+W",
        "mac": "Alt+W",
        "windows": "Alt+W"
      }
    }
  }
}