Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

Co to jest Stopwatch for Google Sheets?

Stopwatch for Google Sheets to rozszerzenie Chrome opracowane przez Shawn Z, a jego główną funkcją jest „Adds a stopwatch to Google Sheets.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Stopwatch for Google Sheets

Pobierz pliki rozszerzeń Stopwatch for Google Sheets w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
Oficjalny URL https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
Opis Adds a stopwatch to Google Sheets.
Rozmiar pliku 5.81 KB
Liczba instalacji 601
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2023-03-01
Data Publikacji 2023-02-13
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper Shawn Z
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jq6l43d1/google-sheets-timer
Adres URL Strony Pomocy https://github.com/jq6l43d1/google-sheets-timer/issues
Adres URL Strony Polityki Prywatności https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
Obsługiwane Języki 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"
            ]
        }
    ]
}