Replace USD with THB for AliExpress.com

Replace USD with THB for AliExpress.com

Replaces US $xx.xx with xx.xx บาท for AliExpress.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Replace USD with THB for AliExpress.com",
  "version": "4.1.0",
  "author": "PoundXI",
  "homepage_url": "https://github.com/PoundXI/Replace-USD-with-THB-for-AliExpress.com",
  "description": "Replaces US $xx.xx with xx.xx บาท for AliExpress.com",
  "icons": {
    "48": "icons/icon48px.png",
    "96": "icons/icon96px.png"
  },
  "action": {
    "default_icon": "icons/icon48px-gray.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.aliexpress.com/*",
        "https://*.th.aliexpress.com/*"
      ],
      "js": [
        "3rdparty/jquery.min.js",
        "js/config.js",
        "js/utils.min.js",
        "js/script.min.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.min.js"
  },
  "options_ui": {
    "page": "html_options/options.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}