RepriceAlytics

RepriceAlytics

RepriceAlytics is the first Amazon repricing tool to embed 12 month avg sales rank, avg price, and more on Amazon's repricing page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Peter Valley",
  "name": "RepriceAlytics",
  "description": "RepriceAlytics is the first Amazon repricing tool to embed 12 month avg sales rank, avg price, and more on Amazon's repricing page",
  "version": "2.0.4",
  "manifest_version": 3,
  "icons": {
    "512": "icon2.png"
  },
  "background": {
    "service_worker": "src/js/background.js"
  },
  "action": {
    "default_popup": "src/html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://sellercentral.amazon.com/inventory*",
        "https://sellercentral.amazon.com.br/inventory*",
        "https://sellercentral.amazon.ca/inventory*",
        "https://sellercentral.amazon.com.mx/inventory*",
        "https://sellercentral.amazon.cn/inventory*",
        "https://sellercentral.amazon.in/inventory*",
        "https://sellercentral.amazon.co.jp/inventory*",
        "https://sellercentral.amazon.sg/inventory*",
        "https://sellercentral.amazon.com.tr/inventory*",
        "https://sellercentral.amazon.ae/inventory*",
        "https://sellercentral.amazon.fr/inventory*",
        "https://sellercentral.amazon.de/inventory*",
        "https://sellercentral.amazon.it/inventory*",
        "https://sellercentral.amazon.nl/inventory*",
        "https://sellercentral.amazon.es/inventory*",
        "https://sellercentral.amazon.co.uk/inventory*",
        "https://sellercentral.amazon.com.au/inventory*",
        "https://sellercentral.amazon.com/hz/inventory*",
        "https://sellercentral.amazon.com/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.com.br/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.ca/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.com.mx/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.cn/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.in/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.co.jp/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.sg/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.com.tr/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.ae/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.fr/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.de/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.it/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.nl/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.es/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.co.uk/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.com.au/inventoryplanning/manageinventoryhealth*",
        "https://sellercentral.amazon.com/hz/inventoryplanning/manageinventoryhealth*"
      ],
      "css": [
        "src/css/bootstrap.min.css",
        "src/css/style.css"
      ],
      "js": [
        "src/js/jquery-3.1.1.min.js",
        "src/js/config.js",
        "src/js/rollbar.min.js",
        "src/js/bootstrap.min.js",
        "src/js/reprice.js",
        "src/js/zen-x-calculation.js",
        "src/js/x-cal-asin.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/img/*"
      ],
      "matches": [
        "*://sellercentral.amazon.com/*",
        "*://sellercentral.amazon.com.br/*",
        "*://sellercentral.amazon.com.au/*",
        "*://sellercentral.amazon.com.mx/*",
        "*://sellercentral.amazon.com.tr/*",
        "*://sellercentral.amazon.co.uk/*",
        "*://sellercentral.amazon.co.jp/*",
        "*://sellercentral.amazon.ca/*",
        "*://sellercentral.amazon.cn/*",
        "*://sellercentral.amazon.in/*",
        "*://sellercentral.amazon.sg/*",
        "*://sellercentral.amazon.ae/*",
        "*://sellercentral.amazon.fr/*",
        "*://sellercentral.amazon.de/*",
        "*://sellercentral.amazon.it/*",
        "*://sellercentral.amazon.nl/*",
        "*://sellercentral.amazon.es/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://prices.zenarbitrage.com/*",
    "*://ranks.zenarbitrage.com/*",
    "*://fba.zenarbitrage.com/*",
    "*://www.amazon.com/*",
    "https://fonts.googleapis.com/*",
    "https://api.rollbar.com/"
  ]
}