Shop Safe

Shop Safe

A chrome extension that helps to identify where an amazon product is originated from.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A chrome extension that helps to identify where an amazon product is originated from.",
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "Shop Safe",
  "icons": {
    "192": "./assets/icons/icon-192.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*/dp/*",
        "https://www.amazon.com/dp/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_end"
    }
  ]
}