Youtube - My Subscriptions

Youtube - My Subscriptions

Set the Youtube home page to My Subscriptions > Uploads only.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Set the Youtube home page to My Subscriptions > Uploads only.",
  "icons": {
    "48": "icon.png"
  },
  "name": "Youtube - My Subscriptions",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "version": "0.0.1"
}