Browser Screen Time
Keep track of the amount of time you spend on the internet
Browser Screen Timeคืออะไร?
Browser Screen Time เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aaaeka และคุณลักษณะหลักของมันคือ "Keep track of the amount of time you spend on the internet"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Browser Screen Time
ดาวน์โหลดไฟล์ส่วนขยาย Browser Screen Time ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Keep track of the amount of time spent on the internet with this simple extension. The information is displayed in a simple chart to make viewing time spent easy. You can see time spent in a single day or a specific interval of time. This add-on is meant to fix the problems with the "Mind the time" add-on. For example, watching videos will not stop the timer from running. Help develop browser screen time: https://github.com/aaaeka/browser-screen-time
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Browser Screen Time |
ID | nlkcecddkejakmaipagbcemeohfomedn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/browser-screen-time/nlkcecddkejakmaipagbcemeohfomedn |
คำอธิบาย | Keep track of the amount of time you spend on the internet |
ขนาดไฟล์ | 757 KB |
จำนวนการติดตั้ง | 9,943 |
เวอร์ชันปัจจุบัน | 1.2.0 |
อัปเดตครั้งล่าสุด | 2023-09-15 |
วันที่เผยแพร่ | 2021-12-15 |
คะแนน | 4.63/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | aaaeka |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/aaaeka/browser-screen-time |
URL หน้าช่วยเหลือ | https://github.com/aaaeka/browser-screen-time |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Browser Screen Time", "short_name": "Screen Time", "version": "1.2.0", "description": "Keep track of the amount of time you spend on the internet", "background": { "service_worker": "background.js" }, "action": { "default_title": "Screen Time", "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/16px.png", "32": "assets\/icons\/32px.png", "64": "assets\/icons\/64px.png", "128": "assets\/icons\/128px.png", "256": "assets\/icons\/256px.png", "512": "assets\/icons\/512px.png", "1024": "assets\/icons\/1024px.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "videoCheck.js" ], "run_at": "document_idle", "all_frames": true } ], "icons": { "16": "assets\/icons\/16px.png", "32": "assets\/icons\/32px.png", "64": "assets\/icons\/64px.png", "128": "assets\/icons\/128px.png", "256": "assets\/icons\/256px.png", "512": "assets\/icons\/512px.png", "1024": "assets\/icons\/1024px.png" }, "permissions": [ "storage", "idle", "tabs", "notifications" ], "manifest_version": 3 } |