Timer 25: the Minimalist Timer

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

¿Qué es Timer 25: the Minimalist Timer?

Timer 25: the Minimalist Timer es una extensión de Chrome desarrollada por https://kyan001.com, y su función principal es "A minimalist 25 minutes timer. Simple, reliable and easy to use.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Timer 25: the Minimalist Timer

Descarga archivos de extensión Timer 25: the Minimalist Timer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        > 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                    

Información Básica de la Extensión

Nombre Timer 25: the Minimalist Timer Timer 25: the Minimalist Timer
ID gmdbcklinofignhfmibchnmgjcocccbh
URL Oficial https://chromewebstore.google.com/detail/timer-25-the-minimalist-t/gmdbcklinofignhfmibchnmgjcocccbh
Descripción A minimalist 25 minutes timer. Simple, reliable and easy to use.
Tamaño del Archivo 85.77 KB
Cantidad de Instalaciones 10,631
Versión Actual 1.15.5
Última Actualización 2020-08-25
Fecha de Publicación 2020-05-02
Calificación 4.62/5 Total de 42 Calificaciones
Desarrollador https://kyan001.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.kyan001.com
URL de la Página de Ayuda https://github.com/kyan001/WebExtensions/tree/master/ChromeExt_Timer25
Idiomas Soportados 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
}