Focus Tools
Focus Tools
What is Focus Tools?
Focus Tools is a Chrome extension developed by briancliftonstudio, and its main feature is "Focus Tools".
Extension Screenshots
Download Focus Tools Extension CRX File
Download Focus Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | |
ID | jfokpamepfdamfdaechaigpbicidpooa |
Official URL | https://chrome.google.com/webstore/detail/focus-tools/jfokpamepfdamfdaechaigpbicidpooa |
Description | Focus Tools |
File Size | 440 KB |
Installation Count | 50 |
Current Version | 0.0.2 |
Last Updated | 2014-11-17 |
Publish Date | 2014-11-17 |
Rating | 4.33/5 Total 6 Ratings |
Developer | briancliftonstudio |
Payment Type | free |
Supported Languages | 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" } } |