Page Scroller

Adds Scroll function to your mouse.

Что такое Page Scroller?

Page Scroller - это расширение Chrome, разработанное hiatamaworkshop, и его основная функция - "Adds Scroll function to your mouse.".

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

screenshot

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

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

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

                        - Holding left click button and touching the left end of the screen will scroll back to the top of the page. 

- Holding left click button and touching the right end of the screen will cancel the previous scroll.                    

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

Название Page Scroller Page Scroller
ID hfknpfhjgikidapfikdknedojecdlehn
Официальный URL https://chrome.google.com/webstore/detail/page-scroller/hfknpfhjgikidapfikdknedojecdlehn
Описание Adds Scroll function to your mouse.
Размер файла 8.28 KB
Количество установок 93
Текущая Версия 0.1.1
Последнее Обновление 2017-01-11
Дата публикации 2017-01-11
Разработчик hiatamaworkshop
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Scroller",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Adds Scroll function to your mouse.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_popup": "scroller.html",
        "default_icon": "icons\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "storage",
        "tabs"
    ]
}