Youtube Shorts Auto Scroll - Productivity++

Youtube Shorts Auto Scroll - Productivity++

Automatically scrolls when a Youtube Short ends.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Youtube Shorts Auto Scroll - Productivity++",
  "version": "69.420",
  "author": {
    "email": "[email protected]"
  },
  "description": "Automatically scrolls when a Youtube Short ends.",
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "24": "icons/24.png",
      "32": "icons/32.png"
    },
    "default_title": "YT Shorts Autoscroll",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "scroll-plain.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "scripting",
    "activeTab"
  ]
}