Focus Mode - Stay Focused & Block Sites
Stay focused like humans, no robots.
Focus Mode - Stay Focused & Block Sitesคืออะไร?
Focus Mode - Stay Focused & Block Sites เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://focusmode.app และคุณลักษณะหลักของมันคือ "Stay focused like humans, no robots."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Focus Mode - Stay Focused & Block Sites
ดาวน์โหลดไฟล์ส่วนขยาย Focus Mode - Stay Focused & Block Sites ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Focus Mode - Stay Focused & Block Sites |
ID | ollmdedpknmlcdmpehclmgbogpifahdc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/focus-mode-stay-focused-b/ollmdedpknmlcdmpehclmgbogpifahdc |
คำอธิบาย | Stay focused like humans, no robots. |
ขนาดไฟล์ | 344 KB |
จำนวนการติดตั้ง | 11,244 |
เวอร์ชันปัจจุบัน | 1.5.2 |
อัปเดตครั้งล่าสุด | 2023-11-21 |
วันที่เผยแพร่ | 2021-02-15 |
คะแนน | 4.21/5 รวมทั้งหมด 33 คะแนน |
ผู้พัฒนา | https://focusmode.app |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://focusmode.app |
ภาษาที่รองรับ | 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\/*" ] } |