Pre-Pin

Pre-Pin

Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet. For more information visit the github homepage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pre-Pin",
  "version": "1.6.0",
  "description": "Pre-Pin extends the capabilities of the Pinterest Pin It! bookmarklet. For more information visit the github homepage.",
  "homepage_url": "http://github.com/chrislaskey/pre-pin",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "pre-pin-content-styles.css"
      ],
      "js": [
        "pre-pin-content-scripts.js"
      ]
    }
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "contextMenus",
    "tabs"
  ]
}