Add to Pinry

Add to Pinry

Pins images from current page to a Pinry installation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add to Pinry",
  "version": "0.2.1",
  "description": "Pins images from current page to a Pinry installation.",
  "manifest_version": 2,
  "icons": {
    "48": "ico-48.png",
    "128": "ico-128.png"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_icon": "ico-128.png",
    "default_title": "Add to Pinry"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true,
    "chrome_style": true
  }
}