Reverse Youtube

Reverse Youtube

Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0",
  "name": "Reverse Youtube",
  "description": "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_title": "Reverse Youtube",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/logo-16.png",
      "48": "images/logo-48.png",
      "128": "images/logo-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  }
}