TumblrSkipper

TumblrSkipper

Skips the sidebar for you when you click a Tumblelog on your Dashboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TumblrSkipper",
  "version": "0.2",
  "description": "Skips the sidebar for you when you click a Tumblelog on your Dashboard",
  "browser_action": {
    "default_icon": "TS.png",
    "default_title": "TumblrSkipper"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.tumblr.com/*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "webNavigation",
    "https://www.tumblr.com/*"
  ]
}