YouTube Shorts Scroller

YouTube Shorts Scroller

Automate YouTube Shorts browsing with keyboard shortcuts and continuous play.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "0.0.1",
  "manifest_version": 3,
  "host_permissions": [
    "https://*/*"
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "36YoutubeScroller.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "content.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    },
    {
      "js": [
        "options.js",
        "contentAll.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "css": [
        "contentAll.css"
      ]
    }
  ],
  "icons": {
    "36": "36YoutubeScroller.png",
    "128": "128YoutubeScroller.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "36YoutubeScroller.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}