Screenshoterest

Screenshoterest

Click the button to take a screenshot. A Pinterest window will open. If you want, you can drag the picture to desktop to save it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Screenshoterest",
  "version": "2.0.1",
  "description": "Click the button to take a screenshot. A Pinterest window will open. If you want, you can drag the picture to desktop to save it.",
  "author": "Felipe Medina",
  "browser_action": {
    "default_icon": "icon/toolbar.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon/icon128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "screenshotter.DOM.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>"
  ]
}