Stopwatch for Google Sheets
Adds a stopwatch to Google Sheets.
Co je Stopwatch for Google Sheets?
Stopwatch for Google Sheets je rozšíření Chrome vyvinuté Shawn Z, a jeho hlavní funkcí je „Adds a stopwatch to Google Sheets.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Stopwatch for Google Sheets
Stáhněte si soubory rozšíření Stopwatch for Google Sheets ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | dldgbenmbgcinedpcmkllgabdmihabon |
Oficiální URL | https://chromewebstore.google.com/detail/stopwatch-for-google-shee/dldgbenmbgcinedpcmkllgabdmihabon |
Popis | Adds a stopwatch to Google Sheets. |
Velikost souboru | 5.81 KB |
Počet instalací | 601 |
Aktuální Verze | 1.4 |
Poslední Aktualizace | 2023-03-01 |
Datum Vydání | 2023-02-13 |
Hodnocení | 4.50/5 Celkem 2 Hodnocení |
Vývojář | Shawn Z |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/jq6l43d1/google-sheets-timer |
URL Stránky Nápovědy | https://github.com/jq6l43d1/google-sheets-timer/issues |
URL Stránky Zásad Ochrany Soukromí | https://github.com/jq6l43d1/google-sheets-timer/blob/main/privacy-policy.md |
Podporované Jazyky | 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" ] } ] } |