Origin Of Amazon Seller

Origin Of Amazon Seller

"With this extension, you can easily see the country to which a product belongs." "The extension shows the origin of an Amazon…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Origin Of Amazon Seller",
  "version": "0.4.1",
  "icons": {
    "16": "./icons/icon.png",
    "48": "./icons/icon.png",
    "128": "./icons/icon.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_icon": {
      "16": "./icons/icon.png",
      "24": "./icons/icon.png",
      "32": "./icons/icon.png"
    },
    "default_title": "Find the Origin of an Amazon Seller",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://amazon.com/*",
    "https://amazon.de/*",
    "https://docs.google.com/*",
    "https://www.docs.google.com/*",
    "https://script.google.com/*",
    "https://www.script.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.de/*",
        "https://www.amazon.co.uk/*",
        "https://www.amazon.es/*",
        "https://www.amazon.com/*",
        "https://www.amazon.fr/*"
      ],
      "js": [
        "./content_script.js"
      ],
      "css": [
        "./content_script.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "wrning.png",
        "amz.png",
        "spinner.svg",
        "no-connection.png"
      ]
    }
  ]
}