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
拡張機能の基本情報
名前 | 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 |
Eメール | [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" ] } |