Universal Automatic Currency Converter

Universal Automatic Currency Converter

Universal automatic currency converter for all web browsing needs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Baizey",
  "name": "Universal Automatic Currency Converter",
  "description": "Universal automatic currency converter for all web browsing needs",
  "manifest_version": 3,
  "version": "5.0.6",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_title": "UA Currency Converter",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "shared.css",
        "content.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "host_permissions": [
    "https://uacc-bff-api.azurewebsites.net/*"
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ]
}