Maker vs Manager
Computes whether your schedule is a maker's schedule or a manager's schedule.
Co to jest Maker vs Manager?
Maker vs Manager to rozszerzenie Chrome opracowane przez maker.schedule.score, a jego główną funkcją jest „Computes whether your schedule is a maker's schedule or a manager's schedule.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Maker vs Manager
Pobierz pliki rozszerzeń Maker vs Manager w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Maker vs Manager |
ID | bnoecidbhjmddidnbfpmdhkpemcfoifl |
Oficjalny URL | https://chromewebstore.google.com/detail/maker-vs-manager/bnoecidbhjmddidnbfpmdhkpemcfoifl |
Opis | Computes whether your schedule is a maker's schedule or a manager's schedule. |
Rozmiar pliku | 28.51 KB |
Liczba instalacji | 25 |
Aktualna Wersja | 1.002 |
Ostatnia Aktualizacja | 2018-08-24 |
Data Publikacji | 2018-08-23 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | maker.schedule.score |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://arthur-johnston.com/scoring_schedule |
Obsługiwane Języki | 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" ] } |