SelfScroll

This extension allow to automatically scroll the page. Suitable for monitors and kiosks.

Что такое SelfScroll?

SelfScroll - это расширение Chrome, разработанное https://zerobug.it, и его основная функция - "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.".

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

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

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

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

                        This extension allow to automatically scroll the page. Suitable for monitors and kiosks.

Buy me a coffe :D

Litecoin: MC8PtUhSL2iJCx5GWrisPZPpgiFE56ejyc
Paypal: https://www.paypal.me/ZeroBug                    

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

Название SelfScroll SelfScroll
ID lofkbkbhpmeihoaogggfbhmjdekjihlf
Официальный URL https://chromewebstore.google.com/detail/selfscroll/lofkbkbhpmeihoaogggfbhmjdekjihlf
Описание This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
Размер файла 132 KB
Количество установок 1,476
Текущая Версия 1.4
Последнее Обновление 2018-11-13
Дата публикации 2018-11-13
Рейтинг 4.40/5 Всего 5 оценок
Разработчик https://zerobug.it
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://zerobug.it/
Поддерживаемые языки en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SelfScroll",
    "version": "1.4",
    "description": "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.",
    "default_locale": "en",
    "icons": {
        "16": ".\/icons\/selfscroll_16.png",
        "48": ".\/icons\/selfscroll_48.png",
        "128": ".\/icons\/selfscroll_128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "selfscroll_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "selfscroll_options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "selfscroll_background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": ".\/icons\/selfscroll.png",
        "default_title": "SelfScroll"
    },
    "manifest_version": 2
}