Outlook Web UXtras
This extension improves some specific UX for the Outlook web client.
Τι είναι το Outlook Web UXtras;
Το Outlook Web UXtras είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον warren.f.fernandes, και η κύρια λειτουργία του είναι "This extension improves some specific UX for the Outlook web client.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Outlook Web UXtras
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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" } |