Stopwatch for Google Sheets
Adds a stopwatch to Google Sheets.
什麼是Stopwatch for Google Sheets?
Stopwatch for Google Sheets是由Shawn Z開發的Chrome擴展程式,該擴展的主要功能是“Adds a stopwatch to Google Sheets.”。
擴展截圖
下載Stopwatch for Google Sheets擴展crx文件
下載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
擴展基本資訊
名稱 | |
ID | dldgbenmbgcinedpcmkllgabdmihabon |
官方網址 | 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" ] } ] } |