Save to Pocket - Privacy Edition

Save to Pocket - Privacy Edition

Adds a toolbar button to save the current page to Pocket, without tracking every URL you browse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save to Pocket - Privacy Edition",
  "description": "Adds a toolbar button to save the current page to Pocket, without tracking every URL you browse.",
  "manifest_version": 2,
  "version": "1.2",
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "Add to Pocket"
  },
  "background": {
    "scripts": [
      "main.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "permissions": [
    "activeTab",
    "notifications",
    "https://getpocket.com/"
  ]
}