Work Interval Timer
Helps to block distracting websites during alternating periods of work and break
Cos'è Work Interval Timer?
Work Interval Timer è un'estensione di Chrome sviluppata da jasonstranne, e la sua funzione principale è "Helps to block distracting websites during alternating periods of work and break".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Work Interval Timer
Scarica i file di estensione Work Interval Timer 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
This extension helps to promote productivity by controlling periods of work and rest. During periods of work, user-specified distracting websites are blocked while all other sites can be accessed in full. On the other hand, during periods of rest all websites are accessible. This method is very similar to the Pomodoro method and is perfect for studying. Simply click on the icon to access these features: -Stop and start buttons -Sliders to customize the length of work and rest periods -Easy to edit list of sites to block
Informazioni di Base sull'Estensione
Nome | |
ID | ohjdmhmeknfckcobidllopadedgiiilg |
URL Ufficiale | https://chrome.google.com/webstore/detail/work-interval-timer/ohjdmhmeknfckcobidllopadedgiiilg |
Descrizione | Helps to block distracting websites during alternating periods of work and break |
Dimensione del File | 55.04 KB |
Conteggio Installazioni | 79 |
Versione Corrente | 2.1.0 |
Ultimo Aggiornamento | 2019-01-09 |
Data di Pubblicazione | 2019-01-09 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | jasonstranne |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Work Interval Timer", "description": "Helps to block distracting websites during alternating periods of work and break", "manifest_version": 2, "version": "2.1.0", "web_accessible_resources": [ "images\/*.jpg" ], "author": "[email protected]", "permissions": [ "management", "background", "webRequest", "tabs", "webRequestBlocking" ], "icons": { "16": "clockpossiblelogo.png", "48": "clockpossiblelogo.png", "128": "clockpossiblelogo.png" }, "browser_action": { "default_title": "Work Interval Timer", "default_icon": "clockpossiblelogo.png", "default_popup": "options.html" }, "background": { "matches": [ "*:\/\/*\/*" ], "scripts": [ "timer.js", "buttonscript.js", "options.html" ], "persistent": true } } |