Timer Refresh
Timer refresh the specified page or only refresh the inactive TAB page.
Co to jest Timer Refresh?
Timer Refresh to rozszerzenie Chrome opracowane przez thomashg0712, a jego główną funkcją jest „Timer refresh the specified page or only refresh the inactive TAB page.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Timer Refresh
Pobierz pliki rozszerzeń Timer Refresh 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
For some users with special needs, keeping the page active maybe a good help. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | fembhgfanglpnpkjcgdacodmefdmfpep |
| Oficjalny URL | https://chrome.google.com/webstore/detail/fembhgfanglpnpkjcgdacodmefdmfpep |
| Opis | Timer refresh the specified page or only refresh the inactive TAB page. |
| Rozmiar pliku | 27.85 KB |
| Liczba instalacji | 42 |
| Aktualna Wersja | 0.0.1 |
| Ostatnia Aktualizacja | 2020-01-19 |
| Data Publikacji | 2020-01-19 |
| Deweloper | thomashg0712 |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"page": "background.html",
"script": "background.js"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start"
}
],
"default_locale": "en",
"description": "__MSG_extDescription__",
"icons": {
"128": "img\/on128.png"
},
"manifest_version": 2,
"name": "__MSG_extName__",
"page_action": {
"default_icon": "img\/on128.png",
"default_popup": "popup.html",
"default_title": "__MSG_extName__"
},
"permissions": [
"tabs",
"browsingData",
"webRequest",
"webNavigation",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"version": "0.0.1"
} | |