Stopwatch for Google Sheets
Adds a stopwatch to Google Sheets.
Cos'è Stopwatch for Google Sheets?
Stopwatch for Google Sheets è un'estensione di Chrome sviluppata da Shawn Z, e la sua funzione principale è "Adds a stopwatch to Google Sheets.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Stopwatch for Google Sheets
Scarica i file di estensione Stopwatch for Google Sheets in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | dldgbenmbgcinedpcmkllgabdmihabon |
URL Ufficiale | https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon |
Descrizione | Adds a stopwatch to Google Sheets. |
Dimensione del File | 5.81 KB |
Conteggio Installazioni | 601 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2023-03-01 |
Data di Pubblicazione | 2023-02-13 |
Valutazione | 4.50/5 Totale 2 Valutazioni |
Sviluppatore | Shawn Z |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jq6l43d1/google-sheets-timer |
URL della Pagina di Aiuto | https://github.com/jq6l43d1/google-sheets-timer/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md |
Lingue Supportate | 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" ] } ] } |