Site Timer
Shows you how much time you spend on websites
Site Timerคืออะไร?
Site Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pikapower9080 และคุณลักษณะหลักของมันคือ "Shows you how much time you spend on websites"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Site Timer
ดาวน์โหลดไฟล์ส่วนขยาย Site Timer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Site timer is an extension that keeps track of how much time you spend on each website, then lets you know which ones you use the most and how long you've spent on each one of them. It can show you a quick overview, or you can show a full list of sites you've visited for more than a configurable threshold. Troubleshooting: Q: The extension stopped counting! A: Try restarting chrome, and keep in mind that the extension will not count time when the window is not focused or you are looking at the extension's popup. Q: How do I reset the extension? A: Open the options menu, press the reset button, when it asks you to confirm press the button again Q: Is there dark mode? A: Yes! Press the options button and check the box to the right of the dark mode option. You can also customize other settings there.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Site Timer |
ID | keccgdpfpljlfdcdpkgjogmiadiidgam |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/site-timer/keccgdpfpljlfdcdpkgjogmiadiidgam |
คำอธิบาย | Shows you how much time you spend on websites |
ขนาดไฟล์ | 29.49 KB |
จำนวนการติดตั้ง | 131 |
เวอร์ชันปัจจุบัน | 1.4.0 |
อัปเดตครั้งล่าสุด | 2023-09-23 |
วันที่เผยแพร่ | 2023-04-14 |
คะแนน | 4.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | pikapower9080 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Site Timer", "version": "1.4.0", "description": "Shows you how much time you spend on websites", "background": { "service_worker": "background.js" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage", "tabs", "alarms", "idle" ], "optional_permissions": [ "management" ], "action": { "default_popup": "popup.html" }, "options_ui": { "open_in_tab": false, "page": "options.html" } } |