TheOatmeal Comic Downloader

TheOatmeal Comic Downloader

Allows you to download comics from The Oatmeal (http://theoatmeal.com) as a single image

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/canvas-to-blob.js",
        "js/getComic.js"
      ],
      "matches": [
        "http://theoatmeal.com/comics/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Allows you to download comics from The Oatmeal (http://theoatmeal.com) as a single image",
  "icons": {
    "16": "images/logo_16.png",
    "32": "images/logo_32.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "manifest_version": 2,
  "name": "TheOatmeal Comic Downloader",
  "options_page": "options.html",
  "page_action": {
    "default_icon": "images/logo_32.png"
  },
  "permissions": [
    "tabs",
    "http://theoatmeal.com/*",
    "http://*.amazonaws.com/*"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "0.5"
}