Instapaper Restyled

Instapaper Restyled

Palatino, softer colors, and more white space for a more relaxed Instapaper experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Instapaper Restyled",
  "version": "0.65",
  "manifest_version": 2,
  "description": "Palatino, softer colors, and more white space for a more relaxed Instapaper experience.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/main.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/main.js"
      ],
      "matches": [
        "http://*.instapaper.com/extras*",
        "http://*.instapaper.com/liked*",
        "http://*.instapaper.com/starred*",
        "http://*.instapaper.com/u",
        "http://*.instapaper.com/archive*"
      ]
    },
    {
      "all_frames": true,
      "css": [
        "css/reading.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/main.js"
      ],
      "matches": [
        "http://*.instapaper.com/go*",
        "http://*.instapaper.com/text*",
        "http://*.instapaper.com/read*"
      ]
    },
    {
      "all_frames": true,
      "css": [
        "css/browse.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/main.js"
      ],
      "matches": [
        "http://*.instapaper.com/browse*"
      ]
    },
    {
      "all_frames": true,
      "css": [
        "css/account.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/main.js"
      ],
      "matches": [
        "http://*.instapaper.com/user*"
      ]
    }
  ]
}