Stopwatch for Google Sheets
Adds a stopwatch to Google Sheets.
Stopwatch for Google Sheetsคืออะไร?
Stopwatch for Google Sheets เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shawn Z และคุณลักษณะหลักของมันคือ "Adds a stopwatch to Google Sheets."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stopwatch for Google Sheets
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" ] } ] } |