Maker vs Manager
Computes whether your schedule is a maker's schedule or a manager's schedule.
Co je Maker vs Manager?
Maker vs Manager je rozšíření Chrome vyvinuté maker.schedule.score, a jeho hlavní funkcí je „Computes whether your schedule is a maker's schedule or a manager's schedule.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Maker vs Manager
Stáhněte si soubory rozšíření Maker vs Manager ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Maker vs Manager |
ID | bnoecidbhjmddidnbfpmdhkpemcfoifl |
Oficiální URL | https://chromewebstore.google.com/detail/maker-vs-manager/bnoecidbhjmddidnbfpmdhkpemcfoifl |
Popis | Computes whether your schedule is a maker's schedule or a manager's schedule. |
Velikost souboru | 28.51 KB |
Počet instalací | 25 |
Aktuální Verze | 1.002 |
Poslední Aktualizace | 2018-08-24 |
Datum Vydání | 2018-08-23 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | maker.schedule.score |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://arthur-johnston.com/scoring_schedule |
Podporované Jazyky | 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" ] } |