PinBuddy

PinBuddy

Browse your Pinboard bookmarks and add new ones with ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.0.7",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    },
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup/popup.html"
  },
  "author": "Pawel Grzybek (https://pawelgrzybek.com/)",
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      }
    }
  },
  "offline_enabled": false,
  "options_page": "options/options.html",
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>",
    "notifications"
  ]
}