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