Pull down reloader
This extension adds the possibility to reload any page by pulling the page down on any touch device.
O que é Pull down reloader?
Pull down reloader é uma extensão do Chrome desenvolvida por Magnus Svensson, e sua principal característica é "This extension adds the possibility to reload any page by pulling the page down on any touch device.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Pull down reloader
Baixe arquivos de extensão Pull down reloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Pull down reloader |
ID | bkdocjlkniembejdhcgfgajhiagindlp |
URL Oficial | https://chromewebstore.google.com/detail/pull-down-reloader/bkdocjlkniembejdhcgfgajhiagindlp |
Descrição | This extension adds the possibility to reload any page by pulling the page down on any touch device. |
Tamanho do Arquivo | 6.68 KB |
Contagem de Instalações | 148 |
Versão Atual | 1.1 |
Última Atualização | 2016-01-18 |
Data de Publicação | 2016-01-18 |
Classificação | 4.09/5 Total de 11 Avaliações |
Desenvolvedor | Magnus Svensson |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |