Save all tabs to Pocket

Save all tabs to Pocket

Save all opening tabs in current window to Pocket.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.2",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-80.png",
    "128": "images/icon-80.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-80.png",
      "38": "images/icon-80.png"
    },
    "default_title": "Save all tabs to Pocket",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "identity",
    "storage",
    "http://*/*",
    "https://*/*",
    "https://getpocket.com/v3/oauth/*/*"
  ],
  "web_accessible_resources": [
    "success.html"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}