Pinterest Buy Button (Priceclerk)

Pinterest Buy Button (Priceclerk)

Discover the best prices for the items you love on Pinterest.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0",
  "name": "Pinterest Buy Button (Priceclerk)",
  "description": "Discover the best prices for the items you love on Pinterest.",
  "browser_action": {
    "default_icon": "resources/icon19.png"
  },
  "icons": {
    "16": "resources/icon16.png",
    "48": "resources/icon48.png",
    "128": "resources/icon128.png"
  },
  "permissions": [
    "http://pinterest.com/",
    "http://*/*",
    "https://*/*",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.pinterest.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "libs/jquery.js",
        "libs/hoverintent.js",
        "js/parse.js",
        "js/mappings.js",
        "js/get_price.js"
      ],
      "run_at": "document_end"
    }
  ]
}