Infocus
Stay focused on the internet with this simple Chrome extension!
Infocusคืออะไร?
Infocus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anton Cao และคุณลักษณะหลักของมันคือ "Stay focused on the internet with this simple Chrome extension!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Infocus
ดาวน์โหลดไฟล์ส่วนขยาย Infocus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Infocus is a Chrome extension that keeps you focused while you're on the internet. You can input sites that you find distracting (eg. YouTube, Facebook) and Infocus will automatically stop you from visiting these websites by either going back to the previous page, or closing the tab entirely if it is a newly opened tab. If you absolutely have to disable Infocus for something, you'll get to practice some mental math in the process! Infocus is also open source: https://github.com/Anton-Cao/Infocus. If you have feature requests, feel free to open an issue in the GitHub repository!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Infocus |
ID | ojgabebkfpaedailhgeapeedhobgfppf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/infocus/ojgabebkfpaedailhgeapeedhobgfppf |
คำอธิบาย | Stay focused on the internet with this simple Chrome extension! |
ขนาดไฟล์ | 154 KB |
จำนวนการติดตั้ง | 64 |
เวอร์ชันปัจจุบัน | 1.4.2 |
อัปเดตครั้งล่าสุด | 2018-07-12 |
วันที่เผยแพร่ | 2018-07-11 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Anton Cao |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Anton-Cao/Infocus |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Infocus", "version": "1.4.2", "description": "Stay focused on the internet with this simple Chrome extension!", "author": "Anton Cao", "permissions": [ "notifications", "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "options_page": "options.html", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/infocus16.png", "32": "images\/infocus32.png", "48": "images\/infocus48.png", "128": "images\/infocus128.png" } }, "icons": { "16": "images\/infocus16.png", "32": "images\/infocus32.png", "48": "images\/infocus48.png", "128": "images\/infocus128.png" }, "commands": { "enable": { "suggested_key": { "default": "Ctrl+I", "mac": "Command+I" }, "description": "Turn Infocus on" } }, "manifest_version": 2 } |