Maker vs Manager
Computes whether your schedule is a maker's schedule or a manager's schedule.
Τι είναι το Maker vs Manager;
Το Maker vs Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον maker.schedule.score, και η κύρια λειτουργία του είναι "Computes whether your schedule is a maker's schedule or a manager's schedule.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Maker vs Manager
Λήψη αρχείων επέκτασης Maker vs Manager σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension looks at your weekly schedule in Google Calendar and computes whether you have a "maker schedule" or a "manager". The scores range from 0% to 100%. A higher score is more of a maker's schedule while a lower score is more of a manager's schedule. The extension looks at the number of meetings, the time of those meetings and the free time in your schedule to compute the score. Full explanation at: http://arthur-johnston.com/scoring_schedule
Βασικές Πληροφορίες Επέκτασης
Όνομα | Maker vs Manager |
ID | bnoecidbhjmddidnbfpmdhkpemcfoifl |
Επίσημο URL | https://chromewebstore.google.com/detail/maker-vs-manager/bnoecidbhjmddidnbfpmdhkpemcfoifl |
Περιγραφή | Computes whether your schedule is a maker's schedule or a manager's schedule. |
Μέγεθος Αρχείου | 28.51 KB |
Αριθμός Εγκαταστάσεων | 25 |
Τρέχουσα Έκδοση | 1.002 |
Τελευταία Ενημέρωση | 2018-08-24 |
Ημερομηνία Δημοσίευσης | 2018-08-23 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | maker.schedule.score |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://arthur-johnston.com/scoring_schedule |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Maker vs Manager", "description": "Computes whether your schedule is a maker's schedule or a manager's schedule.", "version": "1.002", "icons": { "128": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "raw.js" ] } ], "page_action": { "default_name": "Maker vs Manager score", "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |