Outlook Web UXtras

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

Outlook Web UXtras란 무엇입니까?

Outlook Web UXtras은(는) warren.f.fernandes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension improves some specific UX for the Outlook web client."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Outlook Web UXtras 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Outlook Web UXtras Outlook Web UXtras
ID cngcemdpbaiheobffhfeabbpcpnfajnl
공식 URL https://chromewebstore.google.com/detail/outlook-web-uxtras/cngcemdpbaiheobffhfeabbpcpnfajnl
설명 This extension improves some specific UX for the Outlook web client.
파일 크기 193 KB
설치 횟수 20
현재 버전 0.0.1
최근 업데이트 2020-06-21
출시 날짜 2020-06-20
평점 3.00/5 총 1 개의 평점
개발자 warren.f.fernandes
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wfernandes/outlook-chrome-extension
도움말 페이지 URL https://github.com/wfernandes/outlook-chrome-extension
지원되는 언어 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"
}