Auto Reload IDT
Refresh automatically pages on a selected interval of seconds or specific time.
Co to jest Auto Reload IDT?
Auto Reload IDT to rozszerzenie Chrome opracowane przez Giovani Silva, a jego główną funkcją jest „Refresh automatically pages on a selected interval of seconds or specific time.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Auto Reload IDT
Pobierz pliki rozszerzeń Auto Reload IDT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Refresh automatically pages on a selected interval of seconds or specific time.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | fnkcgkngofnmodlbhmkfkloggnldomng |
Oficjalny URL | https://chrome.google.com/webstore/detail/auto-reload-idt/fnkcgkngofnmodlbhmkfkloggnldomng |
Opis | Refresh automatically pages on a selected interval of seconds or specific time. |
Rozmiar pliku | 47.58 KB |
Liczba instalacji | 505 |
Aktualna Wersja | 1.0.3 |
Ostatnia Aktualizacja | 2018-06-06 |
Data Publikacji | 2018-06-06 |
Ocena | 4.25/5 Łącznie 8 Oceny |
Deweloper | Giovani Silva |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |