Phantom

Phantom

Phantom - A merchandise sourcing tool for buyers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Phantom",
  "version": "1.0.5",
  "manifest_version": 3,
  "description": "Phantom - A merchandise sourcing tool for buyers.",
  "icons": {
    "128": "icon.png"
  },
  "action": {
    "default_title": "Phantom"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "host_permissions": [
    "https://app.ghst.io/",
    "https://api.ghst.io/"
  ],
  "permissions": [
    "storage",
    "webRequest",
    "cookies"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}