Puffer

Puffer

Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Puffer",
  "version": "0.1",
  "manifest_version": 2,
  "homepage_url": "http://www.bitsimple.net",
  "minimum_chrome_version": "20",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "description": "Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later).",
  "background": {
    "scripts": [
      "jquery.min.js",
      "popup.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://getpocket.com/a/read/*",
        "https://getpocket.com/a/read/*"
      ],
      "js": [
        "jquery.min.js",
        "send_links.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}