Pinboard Keyboard Shortcut

Pinboard Keyboard Shortcut

Bookmark the current page to Pinboard via a keyboard shortcut

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pinboard Keyboard Shortcut",
  "description": "Bookmark the current page to Pinboard via a keyboard shortcut",
  "version": "1.3",
  "background": {
    "scripts": [
      "bookmark.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "commands": {
    "bookmark-on-pinboard": {
      "suggested_key": {
        "default": "Alt+D"
      },
      "description": "Bookmark the current page on Pinboard"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ]
}