Focus Tools
Focus Tools
Cos'è Focus Tools?
Focus Tools è un'estensione di Chrome sviluppata da briancliftonstudio, e la sua funzione principale è "Focus Tools".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Focus Tools
Scarica i file di estensione Focus Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | jfokpamepfdamfdaechaigpbicidpooa |
URL Ufficiale | https://chrome.google.com/webstore/detail/focus-tools/jfokpamepfdamfdaechaigpbicidpooa |
Descrizione | Focus Tools |
Dimensione del File | 440 KB |
Conteggio Installazioni | 50 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2014-11-17 |
Data di Pubblicazione | 2014-11-17 |
Valutazione | 4.33/5 Totale 6 Valutazioni |
Sviluppatore | briancliftonstudio |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |