Auto Reload IDT
Refresh automatically pages on a selected interval of seconds or specific time.
Cos'è Auto Reload IDT?
Auto Reload IDT è un'estensione di Chrome sviluppata da Giovani Silva, e la sua funzione principale è "Refresh automatically pages on a selected interval of seconds or specific time.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Auto Reload IDT
Scarica i file di estensione Auto Reload IDT 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
Refresh automatically pages on a selected interval of seconds or specific time.
Informazioni di Base sull'Estensione
Nome | |
ID | fnkcgkngofnmodlbhmkfkloggnldomng |
URL Ufficiale | https://chrome.google.com/webstore/detail/auto-reload-idt/fnkcgkngofnmodlbhmkfkloggnldomng |
Descrizione | Refresh automatically pages on a selected interval of seconds or specific time. |
Dimensione del File | 47.58 KB |
Conteggio Installazioni | 505 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2018-06-06 |
Data di Pubblicazione | 2018-06-06 |
Valutazione | 4.25/5 Totale 8 Valutazioni |
Sviluppatore | Giovani Silva |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Reload IDT", "description": "Refresh automatically pages on a selected interval of seconds or specific time.", "version": "1.0.3", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "background", "storage" ], "browser_action": { "default_icon": "reloadBtn.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/inicialization.js", "scripts\/jquery.js", "scripts\/script.js" ] } ], "icons": { "16": "reloadBtn.png", "48": "reloadBtn.png", "128": "reloadBtn.png" }, "web_accessible_resources": [ "popup.html" ] } |