Maker vs Manager
Computes whether your schedule is a maker's schedule or a manager's schedule.
Cos'è Maker vs Manager?
Maker vs Manager è un'estensione di Chrome sviluppata da maker.schedule.score, e la sua funzione principale è "Computes whether your schedule is a maker's schedule or a manager's schedule.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Maker vs Manager
Scarica i file di estensione Maker vs Manager 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 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
Informazioni di Base sull'Estensione
Nome | Maker vs Manager |
ID | bnoecidbhjmddidnbfpmdhkpemcfoifl |
URL Ufficiale | https://chromewebstore.google.com/detail/maker-vs-manager/bnoecidbhjmddidnbfpmdhkpemcfoifl |
Descrizione | Computes whether your schedule is a maker's schedule or a manager's schedule. |
Dimensione del File | 28.51 KB |
Conteggio Installazioni | 25 |
Versione Corrente | 1.002 |
Ultimo Aggiornamento | 2018-08-24 |
Data di Pubblicazione | 2018-08-23 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | maker.schedule.score |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://arthur-johnston.com/scoring_schedule |
Lingue Supportate | 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" ] } |