Maker vs Manager

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

O que é Maker vs Manager?

Maker vs Manager é uma extensão do Chrome desenvolvida por maker.schedule.score, e sua principal característica é "Computes whether your schedule is a maker's schedule or a manager's schedule.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Maker vs Manager

Baixe arquivos de extensão Maker vs Manager no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Maker vs Manager Maker vs Manager
ID bnoecidbhjmddidnbfpmdhkpemcfoifl
URL Oficial https://chromewebstore.google.com/detail/maker-vs-manager/bnoecidbhjmddidnbfpmdhkpemcfoifl
Descrição Computes whether your schedule is a maker's schedule or a manager's schedule.
Tamanho do Arquivo 28.51 KB
Contagem de Instalações 25
Versão Atual 1.002
Última Atualização 2018-08-24
Data de Publicação 2018-08-23
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor maker.schedule.score
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://arthur-johnston.com/scoring_schedule
Idiomas Suportados 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"
    ]
}