Where is my package? - Package tracker

Where is my package? - Package tracker

Package tracker is a free and useful browser extension for tracking your packages from any website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_EXTENSION_NAME__",
  "short_name": "__MSG_EXTENSION_SHORT_NAME__",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "default_locale": "en",
  "version": "0.0.47",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "img/icon.png",
    "128": "img/icon.png"
  },
  "action": {
    "default_title": "Parcel",
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  }
}