Pull down reloader

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

Co to jest Pull down reloader?

Pull down reloader to rozszerzenie Chrome opracowane przez Magnus Svensson, a jego główną funkcją jest „This extension adds the possibility to reload any page by pulling the page down on any touch device.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Pull down reloader

Pobierz pliki rozszerzeń Pull down reloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Pull down reloader Pull down reloader
ID bkdocjlkniembejdhcgfgajhiagindlp
Oficjalny URL https://chromewebstore.google.com/detail/pull-down-reloader/bkdocjlkniembejdhcgfgajhiagindlp
Opis This extension adds the possibility to reload any page by pulling the page down on any touch device.
Rozmiar pliku 6.68 KB
Liczba instalacji 148
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-01-18
Data Publikacji 2016-01-18
Ocena 4.09/5 Łącznie 11 Oceny
Deweloper Magnus Svensson
Typ Płatności free
Obsługiwane Języki 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"
    ]
}