YouTube Shorts Autoscroll
Automatically scrolls to the next YouTube Shorts video when one ends.
Vad är YouTube Shorts Autoscroll?
YouTube Shorts Autoscroll är en Chrome-tillägg utvecklad av panthebig, och dess huvudfunktion är "Automatically scrolls to the next YouTube Shorts video when one ends.".
Tilläggsskärmbilder
Ladda ner YouTube Shorts Autoscroll-förlängningens CRX-fil
Ladda ner YouTube Shorts Autoscroll-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | YouTube Shorts Autoscroll |
ID | dmmihimcjbhpmpkolhnelmhbknfcajmd |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-shorts-autoscroll/dmmihimcjbhpmpkolhnelmhbknfcajmd |
Beskrivning | Automatically scrolls to the next YouTube Shorts video when one ends. |
Filstorlek | 6.56 KB |
Antal Installationer | 399 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2023-08-16 |
Publiceringsdatum | 2023-08-16 |
Betyg | 3.50/5 Totalt 2 Betyg |
Utvecklare | panthebig |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |