Mercher AZ Helper

Mercher AZ Helper

Shows Sellers Rank and display large image on hover on Amazon's website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mercher AZ Helper",
  "version": "1.1",
  "description": "Shows Sellers Rank and display large image on hover on Amazon's website",
  "minimum_chrome_version": "23",
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/s/*",
        "https://www.amazon.com/gp/search/*"
      ],
      "css": [
        "image-hover-css.css"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "image-hover-library.js",
        "myscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery-3.2.1.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "infinity-loading.gif"
  ]
}