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 |
官方網址 | 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" } |