Focus Meter
Tracks focus and break times and blocks distracting sites when you're meant to focus.
Focus Meter là gì?
Focus Meter là một tiện ích mở rộng Chrome được phát triển bởi felixpitau, và tính năng chính của nó là "Tracks focus and break times and blocks distracting sites when you're meant to focus.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Focus Meter
Tải xuống các tệp mở rộng Focus Meter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Focus Meter |
ID | hepedehopmkmfdnlgogmmfkkmjflkkia |
URL Chính Thức | https://chromewebstore.google.com/detail/focus-meter/hepedehopmkmfdnlgogmmfkkmjflkkia |
Mô tả | Tracks focus and break times and blocks distracting sites when you're meant to focus. |
Kích Thước Tệp | 81.51 KB |
Số Lần Cài Đặt | 73 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2018-01-12 |
Ngày Phát Hành | 2018-01-11 |
Nhà Phát Triển | felixpitau |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |