Youtube Shorts Auto Scroll - Productivity++
Automatically scrolls when a Youtube Short ends.
Что такое Youtube Shorts Auto Scroll - Productivity++?
Youtube Shorts Auto Scroll - Productivity++ - это расширение Chrome, разработанное Productivity ++, и его основная функция - "Automatically scrolls when a Youtube Short ends.".
Снимки экрана расширения
Скачать файл CRX расширения Youtube Shorts Auto Scroll - Productivity++
Скачайте файлы расширений Youtube Shorts Auto Scroll - Productivity++ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
You can also change weather it automatically scrolls in the popup. Instructions will be given when the extension is installed! Made with ❤️ from the team at Productivity ++. New version: Fixed bug where if you were on YouTube and then went to a short, it wouldn't work until reload. Other bugs fixed
Основная информация о расширении
Название | Youtube Shorts Auto Scroll - Productivity++ |
ID | bmjbgjndjeinofbgoanhkdgeclbfdbpm |
Официальный URL | https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm |
Описание | Automatically scrolls when a Youtube Short ends. |
Размер файла | 618 KB |
Количество установок | 332 |
Текущая Версия | 69.420 |
Последнее Обновление | 2023-05-30 |
Дата публикации | 2023-05-29 |
Рейтинг | 3.67/5 Всего 3 оценок |
Разработчик | Productivity ++ |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Shorts Auto Scroll - Productivity++", "version": "69.420", "author": { "email": "[email protected]" }, "description": "Automatically scrolls when a Youtube Short ends.", "action": { "default_icon": { "16": "icons\/16.png", "24": "icons\/24.png", "32": "icons\/32.png" }, "default_title": "YT Shorts Autoscroll", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "scroll-plain.js" ] } ], "background": { "service_worker": "background.js" }, "icons": { "128": "icon.png" }, "permissions": [ "scripting", "activeTab" ] } |