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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |