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
Eメール [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"
            ]
        }
    ]
}