Profit Hunter Extension

Profit Hunter Extension

An all in one tool for Amazon sellers to help them make better decisions and increase their profits.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://*.amazon.com/*",
    "*://*.amazon.com.mx/*",
    "*://*.amazon.ca/*"
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icons/icon16.png",
      "48": "images/icons/icon48.png",
      "128": "images/icons/icon128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/loader.gif",
        "/images/progress.gif",
        "/images/profit_hunter_logo.png"
      ],
      "matches": [
        "*://*.amazon.com/*",
        "*://*.amazon.com.mx/*",
        "*://*.amazon.ca/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.com/*",
        "*://*.amazon.com.mx/*",
        "*://*.amazon.ca/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "name": "Profit Hunter Extension",
  "version": "2.3.1",
  "description": "An all in one tool for Amazon sellers to help them make better decisions and increase their profits.",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  }
}