Work Interval Timer
Helps to block distracting websites during alternating periods of work and break
Τι είναι το Work Interval Timer;
Το Work Interval Timer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jasonstranne, και η κύρια λειτουργία του είναι "Helps to block distracting websites during alternating periods of work and break".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Work Interval Timer
Λήψη αρχείων επέκτασης Work Interval Timer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | ohjdmhmeknfckcobidllopadedgiiilg |
Επίσημο URL | https://chrome.google.com/webstore/detail/work-interval-timer/ohjdmhmeknfckcobidllopadedgiiilg |
Περιγραφή | Helps to block distracting websites during alternating periods of work and break |
Μέγεθος Αρχείου | 55.04 KB |
Αριθμός Εγκαταστάσεων | 79 |
Τρέχουσα Έκδοση | 2.1.0 |
Τελευταία Ενημέρωση | 2019-01-09 |
Ημερομηνία Δημοσίευσης | 2019-01-09 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | jasonstranne |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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 } } |