Timer 25: the Minimalist Timer

A minimalist 25 minutes timer. Simple, reliable and easy to use.

Co to jest Timer 25: the Minimalist Timer?

Timer 25: the Minimalist Timer to rozszerzenie Chrome opracowane przez https://kyan001.com, a jego główną funkcją jest „A minimalist 25 minutes timer. Simple, reliable and easy to use.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Timer 25: the Minimalist Timer

Pobierz pliki rozszerzeń Timer 25: the Minimalist 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

                        > Focus on one dedicated function, and make it great.

• 1 click to set a 25 Minute Timer.
• Perfect for Pomodoro Technique / Tomato Timer.
• Saving your time and lifting your efficiency now!
• Nearly 0 Memory/CPU consumption with a better experience!
• Open source software

How To Use:
• START from a fixed 25:00.
• STOP at 0:00 and inform you by a popup alert/notification.
• When counting down, click again to CANCEL the timer.

Extra Functions: 
• Enter "timer" in Chrome's address bar and press TAB to start a non-25 minutes timer.
• [Optional] Play a sound when time's up.
• [Optional] Click is needed to dismiss the notification.

Code & Bug Report: 
• Github Project Page: https://github.com/kyan001/WebExtensions/tree/master/ChromeExt_Timer25
• Help & Bug Report: https://github.com/kyan001/WebExtensions/issues
• Updates: https://github.com/kyan001/WebExtensions/blob/master/ChromeExt_Timer25/UPDATES.md                    

Podstawowe informacje o rozszerzeniu

Nazwa Timer 25: the Minimalist Timer Timer 25: the Minimalist Timer
ID gmdbcklinofignhfmibchnmgjcocccbh
Oficjalny URL https://chromewebstore.google.com/detail/timer-25-the-minimalist-t/gmdbcklinofignhfmibchnmgjcocccbh
Opis A minimalist 25 minutes timer. Simple, reliable and easy to use.
Rozmiar pliku 85.77 KB
Liczba instalacji 10,631
Aktualna Wersja 1.15.5
Ostatnia Aktualizacja 2020-08-25
Data Publikacji 2020-05-02
Ocena 4.62/5 Łącznie 42 Oceny
Deweloper https://kyan001.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.kyan001.com
Adres URL Strony Pomocy https://github.com/kyan001/WebExtensions/tree/master/ChromeExt_Timer25
Obsługiwane Języki de,en,fr,es,it,pl,ru,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.15.5",
    "short_name": "Timer25",
    "description": "__MSG_extDesc__",
    "manifest_version": 2,
    "icons": {
        "16": "Timer_16.png",
        "128": "Timer_128.png"
    },
    "omnibox": {
        "keyword": "Timer"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "notifications",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "browser_action": {
        "default_icon": "Timer.png",
        "default_title": "Timer 25"
    },
    "default_locale": "en",
    "offline_enabled": true
}