Focus Tools
Focus Tools
Vad är Focus Tools?
Focus Tools är en Chrome-tillägg utvecklad av briancliftonstudio, och dess huvudfunktion är "Focus Tools".
Tilläggsskärmbilder
Ladda ner Focus Tools-förlängningens CRX-fil
Ladda ner Focus Tools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | |
ID | jfokpamepfdamfdaechaigpbicidpooa |
Officiell webbadress | https://chrome.google.com/webstore/detail/focus-tools/jfokpamepfdamfdaechaigpbicidpooa |
Beskrivning | Focus Tools |
Filstorlek | 440 KB |
Antal Installationer | 50 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2014-11-17 |
Publiceringsdatum | 2014-11-17 |
Betyg | 4.33/5 Totalt 6 Betyg |
Utvecklare | briancliftonstudio |
Betalningssätt | free |
Stödda Språk | 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" } } |