Autoscroll : Automatic Page Scrolling

An extension to help scroll a webpage

Что такое Autoscroll : Automatic Page Scrolling?

Autoscroll : Automatic Page Scrolling - это расширение Chrome, разработанное Emil Vinod, и его основная функция - "An extension to help scroll a webpage".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Autoscroll : Automatic Page Scrolling

Скачайте файлы расширений Autoscroll : Automatic Page Scrolling в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This extension is perfect for those who are tired of manually scrolling through long articles, websites, or social media posts. No more tired fingers from scrolling or losing your place on a page. With Autoscroll, you can simply set the pace that you prefer and let the extension do the rest :)

For a guide to the extension visit : https://sites.google.com/view/autoscrollguide/home                    

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

Название Autoscroll : Automatic Page Scrolling Autoscroll : Automatic Page Scrolling
ID mofpoefmipkeaakcglcfamacffochlid
Официальный URL https://chromewebstore.google.com/detail/autoscroll-automatic-page/mofpoefmipkeaakcglcfamacffochlid
Описание An extension to help scroll a webpage
Размер файла 191 KB
Количество установок 46
Текущая Версия 0.0.1
Последнее Обновление 2024-01-23
Дата публикации 2023-11-23
Рейтинг 4.20/5 Всего 5 оценок
Разработчик Emil Vinod
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://sites.google.com/view/autoscrollguide/home
URL страницы помощи https://sites.google.com/view/autoscrollguide/home
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Autoscroll : Automatic Page Scrolling",
    "version": "0.0.1",
    "description": "An extension to help scroll a webpage",
    "icons": {
        "16": "Logo.png",
        "32": "Logo.png",
        "48": "Logo.png",
        "128": "Logo.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "js": "scroll.js"
    },
    "permissions": [
        "activeTab"
    ]
}