Talking Clock

Announce the time periodically, set custom recurring reminders and display time.

¿Qué es Talking Clock?

Talking Clock es una extensión de Chrome desarrollada por https://guokai.dev, y su función principal es "Announce the time periodically, set custom recurring reminders and display time.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Talking Clock

Descarga archivos de extensión Talking Clock 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

                        Overview

Talking clock provides time reminder and custom reminder functions, suitable for time and periodic task reminders in daily work and life. It can also display date and time.
Reminder methods include voice announcement and system notifications.

This extension is especially suitable for people who often work for a long time with desktop computer, such as writers, programmers, and people who work remotely or indoors.
• Time reminder helps to manage the time while focusing on the work.
• Custom reminders are suitable for periodic daily affairs, such as "Remind me to have lunch at 11:30 every day".

1. Time Reminder
It announces the time periodically by voice engine and/or system notification. 

The time interval can be set in the options of the extension:
5 minutes / 10 minutes / 15 minutes / 20 minutes / 30 minutes / 1 hour / 2 hours / 3 hours.

In addition, there are several DnD(do not disturb) settings which enabled by default, such as don't remind me time if the browser is in full screen or playing video.

2. Custom Reminder
Users can add custom reminders. Supported reminder types include:
• Only once: only reminds on a specific date.
• Daily reminder: reminder at one or more time every day.
• Weekly reminder: choose one or more days from Monday to Sunday.
• Monthly reminder: choose one or more days from the 1st day to the last day every month.
• Annual reminder: choose one or more days every year, such as "Birthday reminder".

All types can set one or more reminder time on the reminder day. In this way, on the one hand, it can meet the needs of multiple reminders in one day for one thing. For example, "Remind me to take medicine three times (in the morning, noon and evening) every day", just create a daily reminder, which sets three reminder time. On the other hand, multiple reminder time can be set for important things to avoid missing it.

3. Clock
The popup page displays current time and date by clicking the extension icon. In addition, the extension icon itself can also display the time (not enabled by default).

In the options for clock settings, you can set:
• Display analog clock or digital clock.
• Whether to display seconds.
• Whether to display the date.
• Whether to display the time on the extension icon.

4. Other
In the extensions keyboard shortcuts settings(chrome://extensions/shortcuts), you can set shortcuts for displaying the time and announcing the time.


About Reminder Methods
You can use one or both of two reminder methods:
• Voice announcement: announce the time or custom content by Text-to-Speech engine.
• System notification: send a desktop notification.

The voice announcement will make a sound, so it may not be suitable for everyone. In addition, if you forget to turn on the speaker or the volume is too low, you will not hear it.

System notification may also be missed if it disappears automatically. So:
• System notification for time reminder will automatically disappear after a few seconds, because it's not very important.
• Custom reminders are more important than time reminder. So to prevent missing it, system notification for custom reminders will disappear automatically after one minute by default, not a few seconds. You can set this behavior for each custom reminder separately.

In summary, voice announcements and system notifications can complement each other to avoid missing reminder.


About Text-to-Speech (TTS)
TTS includes the TTS provided by the operating system and the remote TTS provided by the browser. The former can be adjusted in the operating system settings, while the latter depends on the network connection. The operating system comes with a general voice effect, it is available offline; the voice provided by the browser is usually better, but it requires network connection.

TTS is used by time reminder and custom reminders. In the extension options, you can set TTS voice. Each voice usually only supports text in one language, and may not read text correctly in other languages.


How to open extension options?
• Right-click the extension icon, then click Options.
• Click the extension icon, move the mouse to the popup page, then click the setting icon in the upper right corner.


This extension is not an alarm clock
It is suitable for daily affairs, but it is not an alarm clock. For example, if you want to catch a plane or get up early, please do not rely on this extension. Because the extension cannot issue a reminder when you exit the browser or when the computer goes into sleep. So it is not suitable for very important things.

Note: due to a browser restriction, reminders/notifications may be delayed for a little time (less than 1 minute).                    

Información Básica de la Extensión

Nombre Talking Clock Talking Clock
ID babblknbggnkbadcnoeoendifjkbkflj
URL Oficial https://chromewebstore.google.com/detail/talking-clock/babblknbggnkbadcnoeoendifjkbkflj
Descripción Announce the time periodically, set custom recurring reminders and display time.
Tamaño del Archivo 259 KB
Cantidad de Instalaciones 10,928
Versión Actual 1.0.0
Última Actualización 2022-12-29
Fecha de Publicación 2020-06-02
Calificación 4.42/5 Total de 73 Calificaciones
Desarrollador https://guokai.dev
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://guokai.dev/privacy
Idiomas Soportados en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.0.0",
    "author": "Guokai Han",
    "manifest_version": 3,
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "offline_enabled": true,
    "minimum_chrome_version": "100",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "alarms",
        "tts",
        "idle",
        "background",
        "notifications"
    ],
    "icons": {
        "16": "icon\/16.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "background": {
        "service_worker": "sw.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "say-time": {
            "description": "__MSG_command_saytime__"
        }
    },
    "action": {
        "default_popup": "popup.html"
    }
}