Maker vs Manager
Computes whether your schedule is a maker's schedule or a manager's schedule.
Vad är Maker vs Manager?
Maker vs Manager är en Chrome-tillägg utvecklad av maker.schedule.score, och dess huvudfunktion är "Computes whether your schedule is a maker's schedule or a manager's schedule.".
Tilläggsskärmbilder
Ladda ner Maker vs Manager-förlängningens CRX-fil
Ladda ner Maker vs Manager-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Maker vs Manager |
ID | bnoecidbhjmddidnbfpmdhkpemcfoifl |
Officiell webbadress | https://chromewebstore.google.com/detail/maker-vs-manager/bnoecidbhjmddidnbfpmdhkpemcfoifl |
Beskrivning | Computes whether your schedule is a maker's schedule or a manager's schedule. |
Filstorlek | 28.51 KB |
Antal Installationer | 25 |
Aktuell Version | 1.002 |
Senast Uppdaterad | 2018-08-24 |
Publiceringsdatum | 2018-08-23 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | maker.schedule.score |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://arthur-johnston.com/scoring_schedule |
Stödda Språk | 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" ] } |