Auto Refresher
Automatically refresh the page on a set interval
Cos'è Auto Refresher?
Auto Refresher è un'estensione di Chrome sviluppata da jones.kaivon, e la sua funzione principale è "Automatically refresh the page on a set interval".
Scarica il file CRX dell'estensione Auto Refresher
Scarica i file di estensione Auto Refresher 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
Simple and easy to use extension to auto reload the page its opened on.
Informazioni di Base sull'Estensione
Nome | |
ID | nlfnbbnnpiiiifgnbckjhkhpmggpailj |
URL Ufficiale | https://chrome.google.com/webstore/detail/nlfnbbnnpiiiifgnbckjhkhpmggpailj |
Descrizione | Automatically refresh the page on a set interval |
Dimensione del File | 114 KB |
Conteggio Installazioni | 26 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-09-01 |
Data di Pubblicazione | 2018-09-01 |
Sviluppatore | jones.kaivon |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Refresher", "version": "1.0", "manifest_version": 2, "description": "Automatically refresh the page on a set interval", "icons": { "16": "images\/refresh-icon16.png", "48": "images\/refresh-icon48.png", "128": "images\/refresh-icon128.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": "images\/refresh-icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/" ] } |