Stopwatch for Google Sheets
Adds a stopwatch to Google Sheets.
Qu'est-ce que Stopwatch for Google Sheets ?
Stopwatch for Google Sheets est une extension Chrome développée par Shawn Z, et sa fonction principale est "Adds a stopwatch to Google Sheets.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Stopwatch for Google Sheets
Téléchargez les fichiers d'extension Stopwatch for Google Sheets au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | dldgbenmbgcinedpcmkllgabdmihabon |
URL Officiel | https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon |
Description | Adds a stopwatch to Google Sheets. |
Taille du Fichier | 5.81 KB |
Nombre d'Installations | 601 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2023-03-01 |
Date de Publication | 2023-02-13 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | Shawn Z |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jq6l43d1/google-sheets-timer |
URL de la Page d'Aide | https://github.com/jq6l43d1/google-sheets-timer/issues |
URL de la Page de Politique de Confidentialité | https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md |
Langues Prises en Charge | 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" ] } ] } |