Local

Find Amazon products locally. Get what you want today, with no shipping cost!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Local",
  "description": "Find Amazon products locally. Get what you want today, with no shipping cost!",
  "version": "2.1",
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*",
        "https://www.amazon.ca/*",
        "https://www.amazon.co.uk/*",
        "https://www.amazon.at/*",
        "https://www.amazon.de/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "images/icons8-shop-local-16.png",
      "32": "images/icons8-shop-local-32.png",
      "48": "images/icons8-shop-local-48.png",
      "100": "images/icons8-shop-local-100.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icons8-shop-local-16.png",
    "32": "images/icons8-shop-local-32.png",
    "48": "images/icons8-shop-local-48.png",
    "100": "images/icons8-shop-local-100.png"
  }
}