Focus Meter
Tracks focus and break times and blocks distracting sites when you're meant to focus.
Focus Meterคืออะไร?
Focus Meter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย felixpitau และคุณลักษณะหลักของมันคือ "Tracks focus and break times and blocks distracting sites when you're meant to focus."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Focus Meter
ดาวน์โหลดไฟล์ส่วนขยาย Focus Meter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This app helps to assist people who have difficulty focusing because they're getting distracted online. Set a blacklist of distracting sites, set starting and ending work times for the blocking to take effect and specify how much focus time earns you a break now and then.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Focus Meter |
ID | hepedehopmkmfdnlgogmmfkkmjflkkia |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/focus-meter/hepedehopmkmfdnlgogmmfkkmjflkkia |
คำอธิบาย | Tracks focus and break times and blocks distracting sites when you're meant to focus. |
ขนาดไฟล์ | 81.51 KB |
จำนวนการติดตั้ง | 73 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2018-01-12 |
วันที่เผยแพร่ | 2018-01-11 |
ผู้พัฒนา | felixpitau |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focus Meter", "short_name": "Focus Meter", "description": "Tracks focus and break times and blocks distracting sites when you're meant to focus.", "version": "1.1", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "block.css" ], "js": [ "block.js" ] } ], "permissions": [ "activeTab", "storage", "alarms", "notifications" ], "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } } |