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