Maker vs Manager
Computes whether your schedule is a maker's schedule or a manager's schedule.
什麼是Maker vs Manager?
Maker vs Manager是由maker.schedule.score開發的Chrome擴展程式,該擴展的主要功能是“Computes whether your schedule is a maker's schedule or a manager's schedule.”。
擴展截圖
下載Maker vs Manager擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | bnoecidbhjmddidnbfpmdhkpemcfoifl |
| 官方網址 | 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"
]
} | |