Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

Was ist Stopwatch for Google Sheets?

Stopwatch for Google Sheets ist eine Chrome-Erweiterung, die von Shawn Z entwickelt wurde, und ihr Hauptmerkmal ist "Adds a stopwatch to Google Sheets.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Stopwatch for Google Sheets-Erweiterungs-CRX-Datei herunterladen

Laden Sie Stopwatch for Google Sheets-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
Offizielle URL https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
Beschreibung Adds a stopwatch to Google Sheets.
Dateigröße 5.81 KB
Installationsanzahl 601
Aktuelle Version 1.4
Letztes Update 2023-03-01
Veröffentlichungsdatum 2023-02-13
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler Shawn Z
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/jq6l43d1/google-sheets-timer
Hilfeseite URL https://github.com/jq6l43d1/google-sheets-timer/issues
URL der Datenschutzrichtlinien-Seite https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
Unterstützte Sprachen 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"
            ]
        }
    ]
}