Skips the sidebar for you when you click a Tumblelog on your Dashboard
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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/*"
]
}