Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

Что такое Stopwatch for Google Sheets?

Stopwatch for Google Sheets - это расширение Chrome, разработанное Shawn Z, и его основная функция - "Adds a stopwatch to Google Sheets.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Stopwatch for Google Sheets

Скачайте файлы расширений 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"
            ]
        }
    ]
}