SubTube

SubTube

Makes the YouTube homepage automatically go to your subscriptions!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "SubTube",
  "version": "1.0",
  "manifest_version": 2,
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "description": "Makes the YouTube homepage automatically go to your subscriptions!",
  "page_action": {
    "default_name": "SubTube",
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.youtube.com/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "permissions": [
    "http://www.youtube.com/",
    "tabs"
  ]
}