Price Advisor

Price Advisor

Comparing Prices(ebay ,amazon) before Purchasing.Displaying the Lower price notification bar automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "2.1.1.1",
  "description": "__MSG_extDescription__",
  "default_locale": "ja",
  "browser_action": {
    "default_name": "__MSG_extName__",
    "default_icon": "images/icon.png"
  },
  "background": {
    "scripts": [
      "jQuery.js",
      "background.js"
    ]
  },
  "icons": {
    "16": "images/yahoo.png",
    "128": "images/icon.png"
  },
  "omnibox": {
    "keyword": "amazon"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.amazon.co.jp/*",
        "*://store.shopping.yahoo.co.jp/*",
        "*://item.rakuten.co.jp/*",
        "*://product.rakuten.co.jp/*",
        "*://books.rakuten.co.jp/*",
        "http://kakaku.com/item/*",
        "*://www.amazon.com/*",
        "*://www.ebay.com/*",
        "*://www.ebay.co.uk/*",
        "*://www.amazon.co.uk/*",
        "*://www.ebay.es/*",
        "*://www.amazon.es/*",
        "*://www.ebay.de/*",
        "*://www.amazon.de/*",
        "*://www.ebay.fr/*",
        "*://www.amazon.fr/*"
      ],
      "js": [
        "jQuery.js",
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "*://*/*",
    "tabs",
    "contextMenus"
  ]
}