Youtube New Layout

Youtube New Layout

Gives you access to the new Youtube Layout.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube New Layout",
  "version": "1.0",
  "description": "Gives you access to the new Youtube Layout.",
  "browser_action": {
    "default_icon": "icon-128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "https://*/*",
    "http://*/*"
  ],
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "inject.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "https://youtube.com/*"
      ],
      "js": [
        "inject.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "http://youtube.com/*"
      ],
      "js": [
        "inject.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "https://youtube.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "manifest_version": 2
}