Outlook Web UXtras

This extension improves some specific UX for the Outlook web client.

O que é Outlook Web UXtras?

Outlook Web UXtras é uma extensão do Chrome desenvolvida por warren.f.fernandes, e sua principal característica é "This extension improves some specific UX for the Outlook web client.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Outlook Web UXtras

Baixe arquivos de extensão Outlook Web UXtras 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

                        Annoyed with some of the Outlook Web Client behaviors. 
Well, this plugin aims to improve the user experience of the Outlook Web Client. Currently, it focuses on two features.
1. It allows the user to turn off the "Request Response" option when creating a calendar item.
2. It automatically opens the calendar sidebar in the mail inbox view.
It works for https://outlook.office.com based urls.

If you'd like to see more features and are tired of waiting for Outlook to integrate them in, feel free to create an issue or contribute at https://github.com/wfernandes/outlook-chrome-extension                    

Informações Básicas da Extensão

Nome Outlook Web UXtras Outlook Web UXtras
ID cngcemdpbaiheobffhfeabbpcpnfajnl
URL Oficial https://chromewebstore.google.com/detail/outlook-web-uxtras/cngcemdpbaiheobffhfeabbpcpnfajnl
Descrição This extension improves some specific UX for the Outlook web client.
Tamanho do Arquivo 193 KB
Contagem de Instalações 20
Versão Atual 0.0.1
Última Atualização 2020-06-21
Data de Publicação 2020-06-20
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor warren.f.fernandes
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/wfernandes/outlook-chrome-extension
URL da Página de Ajuda https://github.com/wfernandes/outlook-chrome-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Outlook Web UXtras",
    "version": "0.0.1",
    "description": "This extension improves some specific UX for the Outlook web client.",
    "icons": {
        "16": ".\/outlook_chrome_extension_16.png",
        "48": ".\/outlook_chrome_extension_48.png",
        "128": ".\/outlook_chrome_extension_128.png"
    },
    "homepage_url": "https:\/\/github.com\/wfernandes\/outlook-chrome-extension",
    "browser_action": {
        "default_icon": ".\/outlook_chrome_extension_16.png"
    },
    "permissions": [
        "storage",
        "https:\/\/outlook.office.com\/mail\/*",
        "https:\/\/outlook.office.com\/calendar\/deeplink\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/outlook.office.com\/mail\/*"
            ],
            "js": [
                "content_outlook_mail.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/outlook.office.com\/calendar\/deeplink\/*"
            ],
            "js": [
                "content_outlook_calendar.js"
            ]
        }
    ],
    "options_page": "options.html"
}