Auto Youtube Shorts Scroller
Automatically scrolls to the next Youtube Short when one ends!
Что такое Auto Youtube Shorts Scroller?
Auto Youtube Shorts Scroller - это расширение Chrome, разработанное https://tyson3101.com, и его основная функция - "Automatically scrolls to the next Youtube Short when one ends!".
Снимки экрана расширения
Скачать файл CRX расширения Auto Youtube Shorts Scroller
Скачайте файлы расширений Auto Youtube Shorts Scroller в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A Chrome Extension that adds an auto-scroll feature on YouTube so you can watch Shorts without the need to touch your mouse. Whenever a YT Short ends, the extension will automatically scroll to the next one for you. Great for doing homework and watching Shorts at the same time without the need to switch tabs! It has a lot of settings for all kinds of short use cases, which include: - Not scrolling when comments are open - Auto-scroll Up/Down - Block Tags/Creators - And More! NOTES: - For ease, use the shortcut, shift + d (or change to your own), to toggle the auto scroller on and off. - Refresh any open shorts tab before use. - For problems and/or suggestions, go to: https://github.com/Tyson3101/Auto-Youtube-Shorts-Scroller
Основная информация о расширении
Название | Auto Youtube Shorts Scroller |
ID | ckbnikemebopgknkpgjlkbffpkkhblbe |
Официальный URL | https://chromewebstore.google.com/detail/auto-youtube-shorts-scrol/ckbnikemebopgknkpgjlkbffpkkhblbe |
Описание | Automatically scrolls to the next Youtube Short when one ends! |
Размер файла | 25.46 KB |
Количество установок | 1,131 |
Текущая Версия | 2.5.2 |
Последнее Обновление | 2024-02-23 |
Дата публикации | 2023-10-15 |
Рейтинг | 4.30/5 Всего 10 оценок |
Разработчик | https://tyson3101.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Tyson3101/Auto-Youtube-Shorts-Scroller |
URL страницы помощи | https://github.com/Tyson3101/Auto-Youtube-Shorts-Scroller/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Auto Youtube Shorts Scroller", "version": "2.5.2", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ ".\/dist\/content.js" ] } ], "permissions": [ "tabs", "storage" ], "icons": { "16": ".\/img\/autoYTScrollerIcon16.png", "48": ".\/img\/autoYTScrollerIcon48.png", "128": ".\/img\/autoYTScrollerIcon128.png" }, "background": { "service_worker": ".\/dist\/background.js" }, "action": { "default_popup": ".\/popup\/popup.html", "default_icon": ".\/img\/autoYTScrollerIcon128.png", "default_title": "Start scrolling!" }, "description": "Automatically scrolls to the next Youtube Short when one ends!" } |