Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

什么是Stopwatch for Google Sheets?

Stopwatch for Google Sheets是由Shawn Z开发的Chrome扩展程序,该扩展的主要功能是“Adds a stopwatch to Google Sheets.”。

扩展截图

screenshot
screenshot
screenshot

下载Stopwatch for Google Sheets扩展crx文件

下载Stopwatch for Google Sheets扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
官方URL https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
简介 Adds a stopwatch to Google Sheets.
文件大小 5.81 KB
安装次数 601
当前版本 1.4
更新时间 2023-03-01
上架时间 2023-02-13
评分 4.50/5 共2次评分
开发者 Shawn Z
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/jq6l43d1/google-sheets-timer
帮助页面URL https://github.com/jq6l43d1/google-sheets-timer/issues
隐私政策页面URL https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
支持的语言 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"
            ]
        }
    ]
}