Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

What is Stopwatch for Google Sheets?

Stopwatch for Google Sheets is a Chrome extension developed by Shawn Z, and its main feature is "Adds a stopwatch to Google Sheets.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Stopwatch for Google Sheets Extension CRX File

Download Stopwatch for Google Sheets extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
Official URL https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
Description Adds a stopwatch to Google Sheets.
File Size 5.81 KB
Installation Count 601
Current Version 1.4
Last Updated 2023-03-01
Publish Date 2023-02-13
Rating 4.50/5 Total 2 Ratings
Developer Shawn Z
Email [email protected]
Payment Type free
Extension Website https://github.com/jq6l43d1/google-sheets-timer
Help Page URL https://github.com/jq6l43d1/google-sheets-timer/issues
Privacy Policy Page URL https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
Supported Languages 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"
            ]
        }
    ]
}