YouTube Scoll Seek

YouTube Scoll Seek

Seek YouTube videos by hovering mouse over video and scrolling Up / Down (Forward / Backward)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.2",
  "name": "YouTube Scoll Seek",
  "description": "Seek YouTube videos by hovering mouse over video and scrolling Up / Down (Forward / Backward)",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/yt-ss-16px.png",
    "32": "/images/yt-ss-32px.png",
    "48": "/images/yt-ss-48px.png",
    "128": "/images/yt-ss-128px.png"
  }
}