expand-youtube

expand-youtube

expand youtube videos to view from the subscriptions page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "expand-youtube",
  "description": "expand youtube videos to view from the subscriptions page",
  "version": "0.1.2",
  "author": "Christopher Kwai-Pun",
  "icons": {
    "24": "/assets/icons/icon1x.png",
    "48": "/assets/icons/icon2x.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/feed/subscriptions",
        "https://www.youtube.com/"
      ],
      "css": [
        "/libraries/bootstrap.min.css",
        "expand.css"
      ],
      "js": [
        "/libraries/jquery.min.js",
        "/libraries/bootstrap.min.js",
        "expand.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}