Focuster for Chrome
Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more.
Τι είναι το Focuster for Chrome;
Το Focuster for Chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://focuster.com, και η κύρια λειτουργία του είναι "Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Focuster for Chrome
Λήψη αρχείων επέκτασης Focuster for Chrome σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Focuster helps professionals and entrepreneurs to better manage their most precious resource - Focus. Learn more and signup at http://focuster.com Focuster Chrome enhances your experience: - Focuster New Tab: Don't let priorities get out of sight. When you open a new tab in Chrome, you will see Focuster. - Quick Capture: Easily capture things you need to do later without losing your flow. Simply press Control-Shift-9 (Windows/Linux) or Command-Shift-9 (Mac) to open Focuster's quick capture window. We love feedback and want to hear yours! E-mail it to [email protected]
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | bafpjfpmoemfbpekbjgcfclkcokknpdj |
Επίσημο URL | https://chrome.google.com/webstore/detail/focuster-for-chrome/bafpjfpmoemfbpekbjgcfclkcokknpdj |
Περιγραφή | Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more. |
Μέγεθος Αρχείου | 14.77 KB |
Αριθμός Εγκαταστάσεων | 163 |
Τρέχουσα Έκδοση | 1.0.6 |
Τελευταία Ενημέρωση | 2019-11-04 |
Ημερομηνία Δημοσίευσης | 2019-11-04 |
Αξιολόγηση | 4.83/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | http://focuster.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.focuster.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://help.focuster.com/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focuster for Chrome", "description": "Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more.", "version": "1.0.6", "icons": { "16": "icon-16.png", "96": "icon-96.png", "144": "icon-144.png" }, "commands": { "quick-capture": { "suggested_key": { "default": "Ctrl+Shift+9", "mac": "Command+Shift+9" }, "description": "Capture ideas quickly in Focuster with a Quick Capture window.", "global": true } }, "browser_action": { "default_icon": { "16": "icon-16.png", "96": "icon-96.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.focuster.com\/*" ], "js": [ "content.js" ] } ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "chrome_url_overrides": { "newtab": "newtab.html" }, "permissions": [ "tabs" ] } |