Outlook Web UXtras
This extension improves some specific UX for the Outlook web client.
Was ist Outlook Web UXtras?
Outlook Web UXtras ist eine Chrome-Erweiterung, die von warren.f.fernandes entwickelt wurde, und ihr Hauptmerkmal ist "This extension improves some specific UX for the Outlook web client.".
Erweiterungsscreenshots
Outlook Web UXtras-Erweiterungs-CRX-Datei herunterladen
Laden Sie Outlook Web UXtras-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Outlook Web UXtras |
ID | cngcemdpbaiheobffhfeabbpcpnfajnl |
Offizielle URL | https://chromewebstore.google.com/detail/outlook-web-uxtras/cngcemdpbaiheobffhfeabbpcpnfajnl |
Beschreibung | This extension improves some specific UX for the Outlook web client. |
Dateigröße | 193 KB |
Installationsanzahl | 20 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2020-06-21 |
Veröffentlichungsdatum | 2020-06-20 |
Bewertung | 3.00/5 Insgesamt 1 Bewertungen |
Entwickler | warren.f.fernandes |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/wfernandes/outlook-chrome-extension |
Hilfeseite URL | https://github.com/wfernandes/outlook-chrome-extension |
Unterstützte Sprachen | 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" } |