YouTube Shorts Autoscroll
Automatically scrolls to the next YouTube Shorts video when one ends.
Co je YouTube Shorts Autoscroll?
YouTube Shorts Autoscroll je rozšíření Chrome vyvinuté panthebig, a jeho hlavní funkcí je „Automatically scrolls to the next YouTube Shorts video when one ends.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření YouTube Shorts Autoscroll
Stáhněte si soubory rozšíření YouTube Shorts Autoscroll ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | YouTube Shorts Autoscroll |
ID | dmmihimcjbhpmpkolhnelmhbknfcajmd |
Oficiální URL | https://chromewebstore.google.com/detail/youtube-shorts-autoscroll/dmmihimcjbhpmpkolhnelmhbknfcajmd |
Popis | Automatically scrolls to the next YouTube Shorts video when one ends. |
Velikost souboru | 6.56 KB |
Počet instalací | 399 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2023-08-16 |
Datum Vydání | 2023-08-16 |
Hodnocení | 3.50/5 Celkem 2 Hodnocení |
Vývojář | panthebig |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |