StayFresh Page Refresher
An open-source extension that refreshes pages at set intervals
O que é StayFresh Page Refresher?
StayFresh Page Refresher é uma extensão do Chrome desenvolvida por Michael Goen, e sua principal característica é "An open-source extension that refreshes pages at set intervals".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão StayFresh Page Refresher
Baixe arquivos de extensão StayFresh Page Refresher 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
Choose a single URL, or all URLs at a domain to refresh periodically depending on the chosen time. The extension remembers your settings and can have multiple URLs refreshing at once. I'm open to suggestions for new features or improvements, feel free to leave a comment in the support section. The source code can be found at my github: https://github.com/mikegoen/stayfresh-extension
Informações Básicas da Extensão
Nome | StayFresh Page Refresher |
ID | fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
URL Oficial | https://chromewebstore.google.com/detail/stayfresh-page-refresher/fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
Descrição | An open-source extension that refreshes pages at set intervals |
Tamanho do Arquivo | 101 KB |
Contagem de Instalações | 158 |
Versão Atual | 1.0.0 |
Última Atualização | 2017-02-26 |
Data de Publicação | 2017-02-26 |
Classificação | 3.67/5 Total de 3 Avaliações |
Desenvolvedor | Michael Goen |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StayFresh Page Refresher", "description": "An open-source extension that refreshes pages at set intervals", "version": "1.0.0", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true } } |