Maker vs Manager
Computes whether your schedule is a maker's schedule or a manager's schedule.
Maker vs Manager là gì?
Maker vs Manager là một tiện ích mở rộng Chrome được phát triển bởi maker.schedule.score, và tính năng chính của nó là "Computes whether your schedule is a maker's schedule or a manager's schedule.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Maker vs Manager
Tải xuống các tệp mở rộng Maker vs Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Maker vs Manager |
ID | bnoecidbhjmddidnbfpmdhkpemcfoifl |
URL Chính Thức | https://chromewebstore.google.com/detail/maker-vs-manager/bnoecidbhjmddidnbfpmdhkpemcfoifl |
Mô tả | Computes whether your schedule is a maker's schedule or a manager's schedule. |
Kích Thước Tệp | 28.51 KB |
Số Lần Cài Đặt | 25 |
Phiên Bản Hiện Tại | 1.002 |
Cập Nhật Lần Cuối | 2018-08-24 |
Ngày Phát Hành | 2018-08-23 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | maker.schedule.score |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://arthur-johnston.com/scoring_schedule |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |