Task timer
This extension set timer for tasks.
Co to jest Task timer?
Task timer to rozszerzenie Chrome opracowane przez skrasilnikov.dev, a jego główną funkcją jest „This extension set timer for tasks.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Task timer
Pobierz pliki rozszerzeń Task timer 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
It's a chrome extension for creating tasks and counting time for solving these tasks. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ilodecgofagpdifoghkggnaohndgpipb |
| Oficjalny URL | https://chrome.google.com/webstore/detail/task-timer/ilodecgofagpdifoghkggnaohndgpipb |
| Opis | This extension set timer for tasks. |
| Rozmiar pliku | 94.94 KB |
| Liczba instalacji | 964 |
| Aktualna Wersja | 1.2.3 |
| Ostatnia Aktualizacja | 2019-04-09 |
| Data Publikacji | 2019-04-09 |
| Ocena | 4.56/5 Łącznie 9 Oceny |
| Deweloper | skrasilnikov.dev |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/skrasilnikoff/task-timer-chrome-extension |
| Adres URL Strony Pomocy | https://github.com/skrasilnikoff/task-timer-chrome-extension |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Task timer",
"description": "This extension set timer for tasks.",
"version": "1.2.3",
"manifest_version": 2,
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"offline_enabled": true,
"permissions": [
"notifications",
"storage"
]
} | |