Pull down reloader
This extension adds the possibility to reload any page by pulling the page down on any touch device.
Co je Pull down reloader?
Pull down reloader je rozšíření Chrome vyvinuté Magnus Svensson, a jeho hlavní funkcí je „This extension adds the possibility to reload any page by pulling the page down on any touch device.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Pull down reloader
Stáhněte si soubory rozšíření Pull down reloader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Pull down reloader |
ID | bkdocjlkniembejdhcgfgajhiagindlp |
Oficiální URL | https://chromewebstore.google.com/detail/pull-down-reloader/bkdocjlkniembejdhcgfgajhiagindlp |
Popis | This extension adds the possibility to reload any page by pulling the page down on any touch device. |
Velikost souboru | 6.68 KB |
Počet instalací | 148 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2016-01-18 |
Datum Vydání | 2016-01-18 |
Hodnocení | 4.09/5 Celkem 11 Hodnocení |
Vývojář | Magnus Svensson |
Typ Platby | free |
Podporované Jazyky | 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" ] } |