Revert YouTube UI

Revert YouTube UI

a temporary solution to revert to the old youtube ui. support me here: https://www.buymeacoffee.com/aperson

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Cookie Setter",
  "version": "1.0",
  "description": "Sets a YouTube cookie.",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{1a827303-d469-4aa4-8f49-d0b45f87be4f}"
    }
  }
}