Where's it Made? Product & Seller Origin Info

Where's it Made? Product & Seller Origin Info

Uncover product origins & seller info on Amazon. Make informed decisions and support your preferred businesses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Where's it Made? Product & Seller Origin Info",
  "description": "Uncover product origins & seller info on Amazon. Make informed decisions and support your preferred businesses.",
  "version": "1.2",
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "asset/16.png",
    "32": "asset/32.png",
    "48": "asset/48.png",
    "128": "asset/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "asset/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/s*"
      ],
      "js": [
        "js/jquery.js",
        "js/amazon.js"
      ]
    },
    {
      "matches": [
        "https://www.amazon.com/dp/*",
        "https://www.amazon.com/*/dp/*"
      ],
      "js": [
        "js/jquery.js",
        "js/product.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}