Auto Youtube Shorts Scroll Down

Auto Youtube Shorts Scroll Down

Что такое Auto Youtube Shorts Scroll Down?

Auto Youtube Shorts Scroll Down - это расширение Chrome, разработанное wonkyungup, и его основная функция - "Auto Youtube Shorts Scroll Down".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Auto Youtube Shorts Scroll Down

Скачайте файлы расширений Auto Youtube Shorts Scroll Down в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A switch is created at the top inside the video.
If there is no switch, it will refresh the page.

It is a test project made for personal study, so I would appreciate it if you could understand it even if you fix it late.
The code has been posted on Github.

If you have any additional or uncomfortable points while using it, please send us a review or e-mail and we will respond.

Version 1.0.7
  - ADD: dislike show
  - FIX: scroll Event check, to many event                    

Основная информация о расширении

Название Auto Youtube Shorts Scroll Down Auto Youtube Shorts Scroll Down
ID bfofdkanfmkkbngkmhmcjichambccene
Официальный URL https://chrome.google.com/webstore/detail/auto-youtube-shorts-scrol/bfofdkanfmkkbngkmhmcjichambccene
Описание Auto Youtube Shorts Scroll Down
Размер файла 274 KB
Количество установок 258
Текущая Версия 1.0.7
Последнее Обновление 2023-06-25
Дата публикации 2023-02-23
Рейтинг 2.67/5 Всего 3 оценок
Разработчик wonkyungup
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Youtube Shorts Scroll Down",
    "manifest_version": 3,
    "version": "1.0.7",
    "permissions": [
        "tabs"
    ],
    "description": "Auto Youtube Shorts Scroll Down",
    "icons": {
        "16": "16x16.png",
        "32": "32x32.png",
        "48": "48x48.png"
    },
    "action": {
        "default_icon": {
            "16": "16x16.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/shorts\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}