YouTube Shorts Autoscroll
Automatically scrolls to the next YouTube Shorts video when one ends.
Wat is YouTube Shorts Autoscroll?
YouTube Shorts Autoscroll is een Chrome-extensie ontwikkeld door panthebig, en de belangrijkste functie is "Automatically scrolls to the next YouTube Shorts video when one ends.".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Shorts Autoscroll
Download YouTube Shorts Autoscroll-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Introducing the Shorts Auto-Scroll Extension – an open-source revolutionary tool designed for the modern content consumer. This extension seamlessly integrates with your YouTube Shorts experience, allowing you to enjoy an uninterrupted flow of bite-sized videos. No more manual scrolling or endless clicking; with the Auto-Scroll feature, your favorite Shorts are delivered to you in a continuous stream, tailored to your interests. Dive into a world of creativity, humor, and inspiration, all with the effortless ease of automatic scrolling. Download the extension today and redefine the way you explore YouTube Shorts !
Open-Source Repository:
https://github.com/panthebig/Youtube-Shorts-Autoscroller-Chrome-Extension Basisinformatie over de Extensie
| Naam | |
| ID | dmmihimcjbhpmpkolhnelmhbknfcajmd |
| Officiële URL | https://chromewebstore.google.com/detail/youtube-shorts-autoscroll/dmmihimcjbhpmpkolhnelmhbknfcajmd |
| Beschrijving | Automatically scrolls to the next YouTube Shorts video when one ends. |
| Bestandsgrootte | 6.56 KB |
| Aantal Installaties | 399 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2023-08-16 |
| Publicatiedatum | 2023-08-16 |
| Beoordeling | 3.50/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | panthebig |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Shorts Autoscroll",
"description": "Automatically scrolls to the next YouTube Shorts video when one ends.",
"version": "1.0",
"permissions": [
"scripting",
"webNavigation",
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/shorts\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/shorts\/*"
],
"js": [
".\/content.js"
]
}
],
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": ".\/background.js"
}
} | |