Pinboard

Pinboard

Let's you bookmark to your Pinboard and give a new look to Pinboard.in

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Pinboard",
  "version": "0.2",
  "manifest_version": 2,
  "description": "Let's you bookmark to your Pinboard and give a new look to Pinboard.in",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": "img/browser.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.pinboard.in/*"
      ],
      "css": [
        "css/themes/prettypinboard.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/zepto.js",
      "js/pinboardApi.js"
    ]
  },
  "permissions": [
    "https://api.pinboard.in/*",
    "tabs",
    "bookmarks"
  ],
  "options_page": "options.html"
}