Instapaper

Instapaper

Instapaper is a simple tool for saving web pages to read later on your iPhone, iPad, Android, computer, or Kindle. The Instapaper browser extension may be used to save the current page directly into your Instapaper account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Instapaper",
  "description": "Instapaper browser extension to save links for offline reading.",
  "version": "1.0.6",
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "insta_logo_tiny.png",
    "48": "insta_logo_small.png",
    "128": "insta_logo.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "readlater.js"
    ]
  },
  "browser_action": {
    "default_icon": "insta_default_action.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "bookmarklet.js"
      ],
      "css": [
        "instapaper.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://twitter.com/*",
        "https://twitter.com/*"
      ],
      "js": [
        "twitter.js"
      ]
    },
    {
      "matches": [
        "http://www.reddit.com/*"
      ],
      "js": [
        "reddit.js"
      ]
    },
    {
      "matches": [
        "https://news.ycombinator.com/*"
      ],
      "js": [
        "hackernews.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.png"
  ]
}