Anex Solution Extension

Anex Solution Extension

Automagically convert crypto prices in different currencies on all websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Anex Solution Extension",
  "description": "Automagically convert crypto prices in different currencies on all websites.",
  "version": "0.0.0.1",
  "manifest_version": 3,
  "icons": {
    "48": "images/logo-black.png",
    "128": "images/logo-black.png"
  },
  "action": {
    "default_icon": "images/logo-black.png",
    "default_popup": "popup/popup.html",
    "default_title": "Enable Fiat Vision"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "mac": "MacCtrl+Shift+C"
      },
      "description": "Automagically convert crypto prices in different currencies on all websites."
    }
  }
}