Focus
Extension to stop procrastination.
Cos'è Focus?
Focus è un'estensione di Chrome sviluppata da Oliver Song, e la sua funzione principale è "Extension to stop procrastination.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Focus
Scarica i file di estensione Focus 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
Stops you from using sites that waste your time. Update 1.1 Doesn't use Jquery! Update 1.2 Chrome store policies, more sites, better wording. Update 1.3 Manifest v3, fix Google Docs Update 1.4 Small bugfix
Informazioni di Base sull'Estensione
Nome | Focus |
ID | iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
URL Ufficiale | https://chromewebstore.google.com/detail/focus/iadpfonbgmlpndbfnhcmpnlcdahgbkbc |
Descrizione | Extension to stop procrastination. |
Dimensione del File | 70.69 KB |
Conteggio Installazioni | 22 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2022-12-09 |
Data di Pubblicazione | 2012-11-24 |
Valutazione | 2.75/5 Totale 4 Valutazioni |
Sviluppatore | Oliver Song |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Focus", "version": "1.4", "manifest_version": 3, "description": "Extension to stop procrastination.", "background": { "service_worker": "background.js" }, "icons": { "16": "icon2.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [], "action": { "name": "Focus", "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/*.google.com\/*" ], "js": [ "contentscript.js" ] } ], "web_accessible_resources": [ { "resources": [ "script.js", "shoop.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |