YouTube No Scroll For Details

YouTube No Scroll For Details

Just remove the scroll for details from YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube No Scroll For Details",
  "version": "1.5",
  "description": "Just remove the scroll for details from YouTube.",
  "homepage_url": "https://github.com/hempe/youtubeNoScrollForDetails",
  "author": "hempe",
  "short_name": "youtubeNoScrollForDetails",
  "manifest_version": 3,
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "css/contentScript.css"
      ],
      "js": [
        "js/contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "32": "images/icon_32.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    }
  }
}