Focus Mode - Stay Focused & Block Sites
Stay focused like humans, no robots.
Focus Mode - Stay Focused & Block Sites là gì?
Focus Mode - Stay Focused & Block Sites là một tiện ích mở rộng Chrome được phát triển bởi https://focusmode.app, và tính năng chính của nó là "Stay focused like humans, no robots.".
Ả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 Mode - Stay Focused & Block Sites
Tải xuống các tệp mở rộng Focus Mode - Stay Focused & Block Sites 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
FocusMode makes you think before you ended up mindlessly scrolling when browsing the web. Only access distracting websites with an informed decision, no more wasting time without you realised. Instead of forcing you to stay focused, this extension gives you options to take a break or turn off focus mode easily. Features: Stay focused for hours longer - Whether you're trying to focus on work, school, reading, or studying - get more things done in a shorter time. Take a break when you need it - Our extension lets you to take a break and resume whenever you want without forcing you to be focused. Works on any websites - Use our predefined distracting website links or make your own list of any websites you want to block. Dark mode - Turn on dark mode if you are still on the dark mode hype train. Privacy-first Your history and browser data is stored in your own local computer. In other words, your data is safe. Support the developer: https://www.buymeacoffee.com/umarluqman
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Focus Mode - Stay Focused & Block Sites |
ID | ollmdedpknmlcdmpehclmgbogpifahdc |
URL Chính Thức | https://chromewebstore.google.com/detail/focus-mode-stay-focused-b/ollmdedpknmlcdmpehclmgbogpifahdc |
Mô tả | Stay focused like humans, no robots. |
Kích Thước Tệp | 344 KB |
Số Lần Cài Đặt | 11,244 |
Phiên Bản Hiện Tại | 1.5.2 |
Cập Nhật Lần Cuối | 2023-11-21 |
Ngày Phát Hành | 2021-02-15 |
Đánh Giá | 4.21/5 Tổng số 33 Đánh Giá |
Nhà Phát Triển | https://focusmode.app |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://focusmode.app |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.5.2", "name": "Focus Mode - Stay Focused & Block Sites", "short_name": "Focus Mode", "description": "Stay focused like humans, no robots.", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": false, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "assets\/img\/16x16.png", "48": "assets\/img\/48x48.png" }, "permissions": [ "storage", "tabs" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; connect-src ws:\/\/localhost:*\/", "web_accessible_resources": [ "assets\/img\/*" ] } |