Pull down reloader

This extension adds the possibility to reload any page by pulling the page down on any touch device.

Что такое Pull down reloader?

Pull down reloader - это расширение Chrome, разработанное Magnus Svensson, и его основная функция - "This extension adds the possibility to reload any page by pulling the page down on any touch device.".

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

screenshot

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

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

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

                        Pull down reloader was created to increase touch gesture compatabilty in chrome for touch devices. This extension adds the posibility to drag any page downwards with touch-input to reveal a refresh-orb.

When dragging the orb downwards until it starts emitting a blue glow, the current webpage will completely reload upon touch release.                    

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

Название Pull down reloader Pull down reloader
ID bkdocjlkniembejdhcgfgajhiagindlp
Официальный URL https://chromewebstore.google.com/detail/pull-down-reloader/bkdocjlkniembejdhcgfgajhiagindlp
Описание This extension adds the possibility to reload any page by pulling the page down on any touch device.
Размер файла 6.68 KB
Количество установок 148
Текущая Версия 1.1
Последнее Обновление 2016-01-18
Дата публикации 2016-01-18
Рейтинг 4.09/5 Всего 11 оценок
Разработчик Magnus Svensson
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pull down reloader",
    "short_name": "PullReloader",
    "author": "Magnus Svensson",
    "description": "This extension adds the possibility to reload any page by pulling the page down on any touch device.",
    "version": "1.1",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "img\/pullDownReloadSymbol.png",
        "48": "img\/pullDownReloadSymbol.png",
        "128": "img\/pullDownReloadSymbol.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/pullDownReloader.css"
            ],
            "js": [
                "js\/pullDownReloader.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/pullDownReloadSymbol.png"
    ]
}