Pull down reloader
This extension adds the possibility to reload any page by pulling the page down on any touch device.
Apa itu Pull down reloader?
Pull down reloader adalah ekstensi Chrome yang dikembangkan oleh Magnus Svensson, dan fitur utamanya adalah "This extension adds the possibility to reload any page by pulling the page down on any touch device.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Pull down reloader
Unduh file ekstensi Pull down reloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Pull down reloader |
ID | bkdocjlkniembejdhcgfgajhiagindlp |
URL Resmi | https://chromewebstore.google.com/detail/pull-down-reloader/bkdocjlkniembejdhcgfgajhiagindlp |
Deskripsi | This extension adds the possibility to reload any page by pulling the page down on any touch device. |
Ukuran File | 6.68 KB |
Jumlah Instalasi | 148 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2016-01-18 |
Tanggal Publikasi | 2016-01-18 |
Penilaian | 4.09/5 Total 11 Penilaian |
Pengembang | Magnus Svensson |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |