Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

¿Qué es Stopwatch for Google Sheets?

Stopwatch for Google Sheets es una extensión de Chrome desarrollada por Shawn Z, y su función principal es "Adds a stopwatch to Google Sheets.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Stopwatch for Google Sheets

Descarga archivos de extensión Stopwatch for Google Sheets 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

                        This extension adds a stopwatch to Google Sheets. When the stopwatch isn't running you can start the stopwatch by clicking on the time. When the stopwatch is running you can click on the time again to pause the stopwatch. The stopwatch can be reset anytime by clicking on the X button next to the time.

When the stopwatch is paused or reset the time is copied to the clipboard.

This extension respects your privacy and doesn't collect or send any of your data anywhere.

This extension open source software.

Source code:  https://github.com/jq6l43d1/google-sheets-timer                    

Información Básica de la Extensión

Nombre Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
URL Oficial https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
Descripción Adds a stopwatch to Google Sheets.
Tamaño del Archivo 5.81 KB
Cantidad de Instalaciones 601
Versión Actual 1.4
Última Actualización 2023-03-01
Fecha de Publicación 2023-02-13
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador Shawn Z
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jq6l43d1/google-sheets-timer
URL de la Página de Ayuda https://github.com/jq6l43d1/google-sheets-timer/issues
URL de la Página de Política de Privacidad https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Stopwatch for Google Sheets",
    "description": "Adds a stopwatch to Google Sheets.",
    "version": "1.4",
    "icons": {
        "48": "timer48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/d\/*\/edit*"
            ],
            "js": [
                "timer.js"
            ]
        }
    ]
}