Remove Youtube Swipe Function

Remove Youtube Swipe Function

You can remove the swipe feature to show the left context menu, thus solving the annoying issue of mouse not hiding in full screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "content.css"
      ]
    }
  ],
  "description": "You can remove the swipe feature to show the left context menu, thus solving the annoying issue of mouse not hiding in full screen",
  "icons": {
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "name": "Remove Youtube Swipe Function",
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0"
}