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" ] } |