Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

Stopwatch for Google Sheets là gì?

Stopwatch for Google Sheets là một tiện ích mở rộng Chrome được phát triển bởi Shawn Z, và tính năng chính của nó là "Adds a stopwatch to Google Sheets.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stopwatch for Google Sheets

Tải xuống các tệp mở rộng Stopwatch for Google Sheets dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
URL Chính Thức https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
Mô tả Adds a stopwatch to Google Sheets.
Kích Thước Tệp 5.81 KB
Số Lần Cài Đặt 601
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2023-03-01
Ngày Phát Hành 2023-02-13
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Shawn Z
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jq6l43d1/google-sheets-timer
URL Trang Trợ Giúp https://github.com/jq6l43d1/google-sheets-timer/issues
URL Trang Chính Sách Bảo Mật https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}