Stopwatch for Google Sheets

Adds a stopwatch to Google Sheets.

O que é Stopwatch for Google Sheets?

Stopwatch for Google Sheets é uma extensão do Chrome desenvolvida por Shawn Z, e sua principal característica é "Adds a stopwatch to Google Sheets.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Stopwatch for Google Sheets

Baixe arquivos de extensão Stopwatch for Google Sheets no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Stopwatch for Google Sheets Stopwatch for Google Sheets
ID dldgbenmbgcinedpcmkllgabdmihabon
URL Oficial https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon
Descrição Adds a stopwatch to Google Sheets.
Tamanho do Arquivo 5.81 KB
Contagem de Instalações 601
Versão Atual 1.4
Última Atualização 2023-03-01
Data de Publicação 2023-02-13
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor Shawn Z
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jq6l43d1/google-sheets-timer
URL da Página de Ajuda https://github.com/jq6l43d1/google-sheets-timer/issues
URL da Página de Política de Privacidade https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md
Idiomas Suportados 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"
            ]
        }
    ]
}