Pinput for Pinboard

Pinput for Pinboard

Light-weight chrome extension for Pinboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pinput for Pinboard",
  "short_name": "Pinput",
  "version": "1.11.0",
  "description": "Light-weight chrome extension for Pinboard.",
  "author": "1000ch",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "page": "html/background.html"
  },
  "browser_action": {
    "default_icon": "icons/icon38.png",
    "default_title": "Pinput for Pinboard",
    "default_popup": "html/popup.html"
  },
  "options_ui": {
    "page": "html/options.html"
  },
  "commands": {
    "direct-bookmark": {
      "suggested_key": {
        "default": "Ctrl+Shift+B",
        "mac": "MacCtrl+Shift+B"
      },
      "description": "Bookmark directly without opening popup window."
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "MacCtrl+B"
      },
      "description": "Open popup window."
    }
  }
}