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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |