Amazon Rank Chrome Extension

Amazon Rank Chrome Extension

This extension allows you to quickly see the number of items sold in each category and what you percent the item is in that…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Amazon Rank Chrome Extension",
  "description": "",
  "version": "1.3",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.amazon.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "settings.js",
        "jquery-2.2.1.js",
        "contentScript.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "webNavigation"
  ]
}