Smart Converter

Smart Converter

Supper easy to use currency converter extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_manifest_name__",
  "version": "1.5.0",
  "manifest_version": 3,
  "homepage_url": "https://smart-converter.vercel.app/",
  "author": "Currency Exchange Rates",
  "description": "__MSG_manifest_description__",
  "default_locale": "en",
  "icons": {
    "128": "./dist/assets/icons/icon128.png"
  },
  "action": {
    "default_popup": "./dist/popup.html",
    "default_title": "Open the popup",
    "default_icon": "./dist/assets/icons/icon.png"
  },
  "background": {
    "service_worker": "dist/bgWrapper.js"
  },
  "options_page": "dist/options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "dist/options.html"
      ],
      "matches": [],
      "extension_ids": []
    }
  ],
  "permissions": [
    "storage",
    "identity",
    "identity.email"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+W",
        "mac": "Alt+W"
      }
    }
  }
}