YouTube Layout Flip

YouTube Layout Flip

Flips the layout of YouTube when clicked so the player is on the right side of the screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Layout Flip",
  "version": "1.0",
  "manifest_version": 3,
  "description": "Flips the layout of YouTube when clicked so the player is on the right side of the screen.",
  "icons": {
    "19": "icon-19.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "action": {
    "default_title": "Click here to flip YouTube's layout",
    "default_icon": {
      "19": "icon-19.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    }
  },
  "permissions": [
    "activeTab",
    "scripting",
    "declarativeContent"
  ],
  "background": {
    "service_worker": "background.js"
  }
}