NeuroPrice Repricer - Amazon repricing tool

NeuroPrice Repricer - Amazon repricing tool

Automated Amazon repricing tool that works directly on the Amazon page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NeuroPrice Repricer - Amazon repricing tool",
  "version": "1.121.6",
  "description": "Automated Amazon repricing tool that works directly on the Amazon page",
  "action": {
    "default_icon": {
      "16": "assets/icon16.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    },
    "default_title": "Neuro Price Login",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "*://sellercentral.amazon.ca/inventory/*viewId=PRICING*",
      "*://sellercentral.amazon.com/inventory/*viewId=PRICING*",
      "*://sellercentral.amazon.ca/inventory?*viewId=PRICING*",
      "*://sellercentral.amazon.com/inventory?*viewId=PRICING*",
      "*://sellercentral.amazon.com/inventory/view/PRICING*",
      "*://sellercentral.amazon.com/inventory/preferences/FBA*",
      "*://sellercentral.amazon.com/inventory/preferences/PRICING*",
      "*://*.sellercentral.amazon.com/pricing/health/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://sellercentral.amazon.ca/inventory/*viewId=PRICING*",
        "*://sellercentral.amazon.com/inventory/*viewId=PRICING*",
        "*://sellercentral.amazon.ca/inventory?*viewId=PRICING*",
        "*://sellercentral.amazon.com/inventory?*viewId=PRICING*",
        "*://sellercentral.amazon.com/inventory/view/PRICING*",
        "*://sellercentral.amazon.com/inventory/preferences/FBA*",
        "*://sellercentral.amazon.com/inventory/preferences/PRICING*",
        "*://*.sellercentral.amazon.com/pricing/health/*"
      ],
      "run_at": "document_start",
      "js": [
        "content-scripts/import-main.js"
      ],
      "css": [
        "styles/contentstyle.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.amazon.com/",
    "https://www.amazonaws.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "content-scripts/main.js"
      ],
      "matches": [
        "*://sellercentral.amazon.ca/*",
        "*://sellercentral.amazon.com/*",
        "*://*.sellercentral.amazon.com/*",
        "https://www.amazon.com/*",
        "https://www.amazonaws.com/*"
      ]
    }
  ]
}