Focus Tools
Focus Tools
Focus Toolsคืออะไร?
Focus Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย briancliftonstudio และคุณลักษณะหลักของมันคือ "Focus Tools"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Focus Tools
ดาวน์โหลดไฟล์ส่วนขยาย Focus Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Focus Tools is a helpful browser extension to help you focus when watching educational videos on YouTube. It is based on research from universities. Focus Tools works by replacing all YouTube videos with a gif designed to heighten the flow of cognition. Navigate to an educational video on YouTube.com to accelerate your learning now!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jfokpamepfdamfdaechaigpbicidpooa |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/focus-tools/jfokpamepfdamfdaechaigpbicidpooa |
คำอธิบาย | Focus Tools |
ขนาดไฟล์ | 440 KB |
จำนวนการติดตั้ง | 50 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2014-11-17 |
วันที่เผยแพร่ | 2014-11-17 |
คะแนน | 4.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | briancliftonstudio |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Focus Tools", "version": "0.0.2", "manifest_version": 2, "description": "Focus Tools", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ "scripts\/jquery.js", "scripts\/content_script.js" ] } ], "content_security_policy": "script-src 'self' http:\/\/localhost; object-src 'self' http:\/\/localhost", "incognito": "split", "offline_enabled": false, "permissions": [ "tabs" ], "web_accessible_resources": [ "manifest.json", "gif.gif" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "128": "icon.png" } } |