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.」です。
拡張機能のスクリーンショット
Outlook Web UXtras拡張機能のCRXファイルをダウンロード
Outlook Web UXtras拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" } |