Yet Another Pinboard Extension

Yet Another Pinboard Extension

Browser extension for pinboard (including omnibar search, sidebar and actionbar button popup)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Yet Another Pinboard Extension",
  "description": "Browser extension for pinboard (including omnibar search, sidebar and actionbar button popup)",
  "homepage_url": "https://github.com/seeba8/yet-another-pinboard-extension",
  "author": "seeba8",
  "version": "1.5.1",
  "background": {
    "page": "html/background.html",
    "persistent": false
  },
  "omnibox": {
    "keyword": "pin"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "Opens the pinboard popup"
    },
    "execute_sidebar_action": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Opens the pinboard sidebar (Firefox only)"
    },
    "create_bookmark": {
      "suggested_key": {
        "default": "Alt+Shift+P"
      },
      "description": "Opens the pinboard popup in the bookmark creation dialog (Firefox only)"
    }
  },
  "icons": {
    "16": "img/pinboard-16.png",
    "32": "img/pinboard-32.png",
    "48": "img/pinboard-48.png",
    "96": "img/pinboard-96.png",
    "128": "img/pinboard-128.png"
  },
  "permissions": [
    "https://api.pinboard.in/v1/*",
    "storage",
    "tabs",
    "bookmarks",
    "contextMenus",
    "activeTab",
    "alarms"
  ],
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": {
      "16": "img/pinboard-16.png",
      "32": "img/pinboard-32.png",
      "48": "img/pinboard-48.png",
      "96": "img/pinboard-96.png"
    },
    "default_title": "Yet Another Pinboard Extension",
    "default_popup": "html/popup.html",
    "default_area": "navbar"
  },
  "sidebar_action": {
    "default_panel": "html/sidebar.html",
    "default_icon": "img/pinboard-96.png"
  }
}