DHL Express Commerce Order Tracker

DHL Express Commerce Order Tracker

Quickly look up DHL Express Commerce order information from the chrome side panel

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "DHL Express Commerce Order Tracker",
  "description": "Quickly look up DHL Express Commerce order information from the chrome side panel",
  "version": "1.4.0",
  "action": {
    "default_icon": {
      "16": "src/images/icon16.png",
      "48": "src/images/icon48.png",
      "128": "src/images/icon128.png"
    },
    "default_title": "Click to open panel"
  },
  "options_ui": {
    "page": "src/options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "sidePanel",
    "clipboardWrite"
  ],
  "side_panel": {
    "default_path": "src/sidepanel/sidepanel.html"
  },
  "background": {
    "service_worker": "src/background/background.js"
  },
  "icons": {
    "16": "src/images/icon16.png",
    "48": "src/images/icon48.png",
    "128": "src/images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/functions/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}