UpPocket

UpPocket

List, search, and open your Pocket links from a convenient popup.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "icon-19.png",
      "38": "[email protected]"
    },
    "default_title": "UpPocket"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      }
    },
    "add-current-page": {
      "description": "Add the current page to Pocket",
      "suggested_key": {
        "default": "Alt+Shift+K"
      }
    }
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "List, search, and open your Pocket links from a convenient popup.",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48-aqua.png",
    "128": "icon-128-aqua.png"
  },
  "manifest_version": 2,
  "name": "UpPocket",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "contextMenus",
    "https://readitlaterlist.com/*",
    "https://getpocket.com/*",
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.1",
  "web_accessible_resources": [
    "report.html",
    "add.html",
    "oauth.html"
  ]
}