Replace YouTube's Home with Subscriptions

Replace YouTube's Home with Subscriptions

Sets the "Subscriptions" page as your default homepage on YouTube by redirecting all requests at the browser level

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Replace YouTube's Home with Subscriptions",
  "short_name": "YTMySubs",
  "description": "Sets the \"Subscriptions\" page as your default homepage on YouTube by redirecting all requests at the browser level",
  "version": "1.1.1",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://*.youtube.com/",
    "tabs"
  ],
  "background": {
    "page": "background.html"
  }
}