Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

Apa itu Stopwatch for Google Sheets?

Stopwatch for Google Sheets adalah ekstensi Chrome yang dikembangkan oleh Shawn Z, dan fitur utamanya adalah "Adds a stopwatch to Google Sheets.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Stopwatch for Google Sheets

Unduh file ekstensi Stopwatch for Google Sheets dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
URL Resmi https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
Deskripsi Adds a stopwatch to Google Sheets.
Ukuran File 5.81 KB
Jumlah Instalasi 601
Versi Saat Ini 1.4
Terakhir Diperbarui 2023-03-01
Tanggal Publikasi 2023-02-13
Penilaian 4.50/5 Total 2 Penilaian
Pengembang Shawn Z
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/jq6l43d1/google-sheets-timer
URL Halaman Bantuan https://github.com/jq6l43d1/google-sheets-timer/issues
URL Halaman Kebijakan Privasi https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
Bahasa yang Didukung 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"
            ]
        }
    ]
}