Youtube Columns Swapper

Youtube Columns Swapper

Swap the columns in youtube so you can have the video player either on the left or on the right

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Youtube Columns Swapper",
  "version": "1.0.0",
  "description": "Swap the columns in youtube so you can have the video player either on the left or on the right",
  "icons": {
    "16": "images/i-16.png",
    "32": "images/i-32.png",
    "48": "images/i-48.png",
    "128": "images/i-128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "background",
    "storage"
  ],
  "background": {
    "service_worker": "./scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/watch*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "options_page": "./options.html",
  "action": {
    "default_popup": "./popup.html",
    "default_icons": {
      "16": "images/i-16.png",
      "32": "images/i-32.png",
      "48": "images/i-48.png",
      "128": "images/i-128.png"
    }
  }
}