Block & Focus
Set your work and break time and let this extension block the sites that are keeping you away from your goals.
Τι είναι το Block & Focus;
Το Block & Focus είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Felipe Thome, και η κύρια λειτουργία του είναι "Set your work and break time and let this extension block the sites that are keeping you away from your goals.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Block & Focus
Λήψη αρχείων επέκτασης Block & Focus σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Type a list of websites that you should not access when you are working and choose for how many minutes you should not access them. Then, the websites will be blocked and in their place will be shown a motivational phrase. You can, also, choose if you want break time. That means, you can type for how long you want to work and for how long you want to rest (during your break you can access your blocked websites). Features: * Block websites during a period of time defined by you. * Add exceptions to the blocked websites list. * Define breaks in which you can access your blocked sites. * Pause and stop buttons so you are in control of your productivity. * Option to hide the "pause" and "stop" buttons. * Keyboard shortcuts to turn the timer on/off. * Blocked tabs are unblocked automatically during a break. * Block tabs that were already open when the extension is on. * Show how many work cycles the user completed completed during a session. * Choose if you want to hear a sound when a time cycle ends. * Add a custom sound to play when a time cycle ends. * Statistics page. Charts with the time you have worked, how many times you have tried to access a blocked website, and more. Remember: you can turn on/off the timer using the extension button icon that stays close to the Chrome address bar.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | dcpbedhdekgkhigjgmlcbmcjoeaebbfm |
Επίσημο URL | https://chromewebstore.google.com/detail/block-focus/dcpbedhdekgkhigjgmlcbmcjoeaebbfm |
Περιγραφή | Set your work and break time and let this extension block the sites that are keeping you away from your goals. |
Μέγεθος Αρχείου | 574 KB |
Αριθμός Εγκαταστάσεων | 26,075 |
Τρέχουσα Έκδοση | 5.0.1 |
Τελευταία Ενημέρωση | 2021-03-21 |
Ημερομηνία Δημοσίευσης | 2018-08-24 |
Αξιολόγηση | 4.77/5 Συνολικά 185 Αξιολογήσεις |
Προγραμματιστής | Felipe Thome |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.blockandfocus.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.blockandfocus.com/ |
Υποστηριζόμενες Γλώσσες | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "5.0.1", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "browser_action": { "default_title": "Click for more", "default_icon": "img\/icon.png", "default_popup": "popup.html" }, "commands": { "start": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Start\/Stop the timer." }, "pause": { "suggested_key": { "default": "Ctrl+Shift+U", "mac": "Command+Shift+U" }, "description": "Pause\/Resume the timer." } }, "icons": { "16": "img\/icon.png", "32": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" }, "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": true }, "background": { "page": "bg.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/checker.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "img\/*", "scripts\/*", "styles\/*", "audio\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "background", "tabs", "storage", "notifications", "unlimitedStorage" ] } |