Auto TikTok Scroller

Auto TikTok Scroller is a helpful tool to automatically scroll to the next TikTok when one ends.

Что такое Auto TikTok Scroller?

Auto TikTok Scroller - это расширение Chrome, разработанное Wiz Extensions, и его основная функция - "Auto TikTok Scroller is a helpful tool to automatically scroll to the next TikTok when one ends.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Auto TikTok Scroller

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

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

                        A Chrome Extension that adds an auto-scroll (auto play-next) feature on TikTok so you can watch TikToks without the need to touch your mouse.

Whenever a TikTok ends, the extension will automatically scroll to the next one for you. Great for doing homework and watching TikTok at the same time without the need to switch tabs! 

Works on both fullscreen and not, perfectly suiting everyone's different needs!                    

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

Название Auto TikTok Scroller Auto TikTok Scroller
ID ngnmmnppfloibngkifccjiljhnjoleaa
Официальный URL https://chromewebstore.google.com/detail/auto-tiktok-scroller/ngnmmnppfloibngkifccjiljhnjoleaa
Описание Auto TikTok Scroller is a helpful tool to automatically scroll to the next TikTok when one ends.
Размер файла 210 KB
Количество установок 4,497
Текущая Версия 4.1.3
Последнее Обновление 2023-11-26
Дата публикации 2021-07-15
Рейтинг 3.71/5 Всего 38 оценок
Разработчик Wiz Extensions
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Tyson3101/Auto-TikTok-Scroller
URL страницы помощи https://github.com/Tyson3101/Auto-TikTok-Scroller/issues
URL страницы политики конфиденциальности https://sites.google.com/view/extensions-privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto TikTok Scroller",
    "version": "4.1.3",
    "background": {
        "service_worker": "bg.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/dist\/content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": ".\/img\/tiktokIcon16.png",
        "48": ".\/img\/tiktokIcon48.png",
        "128": ".\/img\/tiktokIcon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injected_content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_popup": ".\/popup\/popup.html",
        "default_icon": ".\/img\/tiktokPopupIcon.png",
        "default_title": "Start scrolling!"
    },
    "description": "Auto TikTok Scroller is a helpful tool to automatically scroll to the next TikTok when one ends."
}