Tumblr Autosave app

Tumblr Autosave app

An app to save drafts locally while writing blog on tumblr

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tumblr Autosave app",
  "description": "An app to save drafts locally while writing blog on tumblr",
  "version": "2",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.tumblr.com/edit/*",
        "http://www.tumblr.com/new/text",
        "http://www.tumblr.com/dashboard"
      ],
      "js": [
        "autosave.js"
      ]
    }
  ]
}