Warehouse Spy for Amazon

Warehouse Spy for Amazon

View the Amazon Warehouse Deals availability directly on any Amazon product 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": "Warehouse Spy for Amazon",
  "version": "0.3.3",
  "description": "View the Amazon Warehouse Deals availability directly on any Amazon product page.",
  "short_name": "WarehouseSpy",
  "icons": {
    "16": "images/icon-16.png",
    "19": "images/icon-19.png",
    "24": "images/icon-24.png",
    "32": "images/icon-32.png",
    "128": "images/icon-128.png"
  },
  "homepage_url": "https://warehousespy.com",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/*"
      ],
      "js": [
        "content/import-index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/index.js"
      ],
      "matches": [
        "https://*.amazon.com/*"
      ]
    },
    {
      "resources": [
        "chunks/*.js",
        "content/index.js"
      ],
      "matches": [
        "https://*.amazon.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background/index.js",
    "matches": [
      "https://*.amazon.com/*"
    ],
    "type": "module"
  },
  "action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "24": "images/icon-24.png",
      "32": "images/icon-32.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Warehouse Spy for Amazon"
  }
}