YouTube Shorts Autoscroll
Automatically scrolls to the next YouTube Shorts video when one ends.
Hvad er YouTube Shorts Autoscroll?
YouTube Shorts Autoscroll er en Chrome-udvidelse udviklet af panthebig, og dens hovedfunktion er "Automatically scrolls to the next YouTube Shorts video when one ends.".
Udvidelsesskærmbilleder
Download YouTube Shorts Autoscroll-udvidelses-CRX-fil
Download YouTube Shorts Autoscroll-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | dmmihimcjbhpmpkolhnelmhbknfcajmd |
| Officiel URL | https://chromewebstore.google.com/detail/youtube-shorts-autoscroll/dmmihimcjbhpmpkolhnelmhbknfcajmd |
| Beskrivelse | Automatically scrolls to the next YouTube Shorts video when one ends. |
| Filstørrelse | 6.56 KB |
| Antal Installationer | 399 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2023-08-16 |
| Udgivelsesdato | 2023-08-16 |
| Bedømmelse | 3.50/5 Samlet 2 Bedømmelser |
| Udvikler | panthebig |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |