Maker vs Manager

Computes whether your schedule is a maker's schedule or a manager's schedule.

What is Maker vs Manager?

Maker vs Manager is a Chrome extension developed by maker.schedule.score, and its main feature is "Computes whether your schedule is a maker's schedule or a manager's schedule.".

Extension Screenshots

screenshot

Download Maker vs Manager Extension CRX File

Download Maker vs Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Maker vs Manager Maker vs Manager
ID bnoecidbhjmddidnbfpmdhkpemcfoifl
Official URL https://chromewebstore.google.com/detail/maker-vs-manager/bnoecidbhjmddidnbfpmdhkpemcfoifl
Description Computes whether your schedule is a maker's schedule or a manager's schedule.
File Size 28.51 KB
Installation Count 25
Current Version 1.002
Last Updated 2018-08-24
Publish Date 2018-08-23
Rating 5.00/5 Total 1 Ratings
Developer maker.schedule.score
Email [email protected]
Payment Type free
Extension Website http://arthur-johnston.com/scoring_schedule
Supported Languages 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"
    ]
}