Work Interval Timer
Helps to block distracting websites during alternating periods of work and break
Co to jest Work Interval Timer?
Work Interval Timer to rozszerzenie Chrome opracowane przez jasonstranne, a jego główną funkcją jest „Helps to block distracting websites during alternating periods of work and break”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Work Interval Timer
Pobierz pliki rozszerzeń Work Interval 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
This extension helps to promote productivity by controlling periods of work and rest. During periods of work, user-specified distracting websites are blocked while all other sites can be accessed in full. On the other hand, during periods of rest all websites are accessible. This method is very similar to the Pomodoro method and is perfect for studying. Simply click on the icon to access these features: -Stop and start buttons -Sliders to customize the length of work and rest periods -Easy to edit list of sites to block
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ohjdmhmeknfckcobidllopadedgiiilg |
Oficjalny URL | https://chrome.google.com/webstore/detail/work-interval-timer/ohjdmhmeknfckcobidllopadedgiiilg |
Opis | Helps to block distracting websites during alternating periods of work and break |
Rozmiar pliku | 55.04 KB |
Liczba instalacji | 79 |
Aktualna Wersja | 2.1.0 |
Ostatnia Aktualizacja | 2019-01-09 |
Data Publikacji | 2019-01-09 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | jasonstranne |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Work Interval Timer", "description": "Helps to block distracting websites during alternating periods of work and break", "manifest_version": 2, "version": "2.1.0", "web_accessible_resources": [ "images\/*.jpg" ], "author": "[email protected]", "permissions": [ "management", "background", "webRequest", "tabs", "webRequestBlocking" ], "icons": { "16": "clockpossiblelogo.png", "48": "clockpossiblelogo.png", "128": "clockpossiblelogo.png" }, "browser_action": { "default_title": "Work Interval Timer", "default_icon": "clockpossiblelogo.png", "default_popup": "options.html" }, "background": { "matches": [ "*:\/\/*\/*" ], "scripts": [ "timer.js", "buttonscript.js", "options.html" ], "persistent": true } } |