YouTube Notch Mode

YouTube Notch Mode

Bring the magic of the iPhone X’s new display to YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Notch Mode",
  "description": "Bring the magic of the iPhone X’s new display to YouTube.",
  "version": "1",
  "manifest_version": 2,
  "page_action": {
    "default_icon": "128.png",
    "default_title": "YouTube Notch Mode"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch*"
      ],
      "js": [
        "jquery.min.js",
        "script.js"
      ]
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  }
}