Pull down reloader

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

Cos'è Pull down reloader?

Pull down reloader è un'estensione di Chrome sviluppata da Magnus Svensson, e la sua funzione principale è "This extension adds the possibility to reload any page by pulling the page down on any touch device.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pull down reloader

Scarica i file di estensione Pull down reloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pull down reloader Pull down reloader
ID bkdocjlkniembejdhcgfgajhiagindlp
URL Ufficiale https://chromewebstore.google.com/detail/pull-down-reloader/bkdocjlkniembejdhcgfgajhiagindlp
Descrizione This extension adds the possibility to reload any page by pulling the page down on any touch device.
Dimensione del File 6.68 KB
Conteggio Installazioni 148
Versione Corrente 1.1
Ultimo Aggiornamento 2016-01-18
Data di Pubblicazione 2016-01-18
Valutazione 4.09/5 Totale 11 Valutazioni
Sviluppatore Magnus Svensson
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}