Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

Hvad er Stopwatch for Google Sheets?

Stopwatch for Google Sheets er en Chrome-udvidelse udviklet af Shawn Z, og dens hovedfunktion er "Adds a stopwatch to Google Sheets.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Stopwatch for Google Sheets-udvidelses-CRX-fil

Download Stopwatch for Google Sheets-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
Officiel URL https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
Beskrivelse Adds a stopwatch to Google Sheets.
Filstørrelse 5.81 KB
Antal Installationer 601
Nuværende Version 1.4
Senest Opdateret 2023-03-01
Udgivelsesdato 2023-02-13
Bedømmelse 4.50/5 Samlet 2 Bedømmelser
Udvikler Shawn Z
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/jq6l43d1/google-sheets-timer
Hjælpeside-URL https://github.com/jq6l43d1/google-sheets-timer/issues
URL til Fortrolighedspolitik Side https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
Understøttede Sprog 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"
            ]
        }
    ]
}