Email Taskbar/Dock Unread Badge

Add an unread email count badge to Outlook's** PWA icon on supported OS's taskbar's or dock's

什麼是Email Taskbar/Dock Unread Badge?

Email Taskbar/Dock Unread Badge是由Ocfinity (Jared)開發的Chrome擴展程式,該擴展的主要功能是“Add an unread email count badge to Outlook's** PWA icon on supported OS's taskbar's or dock's”。

擴展截圖

screenshot
screenshot

下載Email Taskbar/Dock Unread Badge擴展crx文件

下載Email Taskbar/Dock Unread Badge擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Note: I have added a new extension that merges the first 2 together, the Gmail and Outlook unread counts all in one extension. Please view my other extensions or you can find it at https://chrome.google.com/webstore/detail/multi-emailapp-taskbardoc/ipeimmibpbandhbpndfdbjpdodcjdbdo

Disclaimer: The developer of this extension in no way claims to be associated with Google/Microsoft/Outlook. I acknowlegde that I do not own their respective trademarks. This extension was developed for personal use and shared for others to use, if they wish to.

This extension adds an unread count badge to the taskbar/dock icon of a PWA* Outlook** app. The extension is still in its infancy, so please consider it when rating it.

(Windows) How to install a PWA in Google** Chrome:
1. Navigate to the Outlook** URL, i.e. go to your Outlook** Inbox.
2. Click on the Google Chrome browser settings button, ⋮ .
3. Click on menu option, "More tools".
4. Click on sub-menu option, "Create shortcut..."
5. Name the shortcut, e.g. Outlook**.
6. (NB!) Ensure that you check/tick the checkbox labelled, "Open as window".
7. Once the new Outlook** window opens, remember to pin the PWA to your taskbar to ensure that the extension adds the unread count to the pinned icon on the taskbar.
8. Windows 10 and 11, ensure that the Taskbar setting, "Show badges on taskbar buttons", is toggled on (i.e., enabled) to allow the unread count badge to be shown on the Windows Taskbar.

Once you have successfully made use of the extension, could you please rate it, and if you have any feedback, it will be appreciated too. As mentioned, this is still in the alpha stage of the extension and may have issues with reflecting an accurate count. If you find any bugs with the count reflected, please do share the scenario that may have triggered the incorrect count.

I hope that this small extension helps you in some way, enjoy.

* PWA, Progressive Web Application.
** The developer acknowledges that the trademarks are owned by their respective owners and in no way is associated with the developer of this extension.


Updates:
2022-11-26 (0.1.6)
- The previously named extension was taken down by the Chrome Web Store, due to a complaint received, “The app uses the trademarks of Microsoft Corporation without authorization.  In this instance, the app uses the trademarks in the app's Title.”

2022-07-11 (0.1.6)
- Removed the previous Calendar feature from being default enabled. If this feature is wanted, there is a checkbox in the extensions options that will enable it again, "No Badge on Calendar PWA: (Experimental)". It is experimental, as it causes the count badge to flash on and off. 

2022-07-10 (0.1.5)
- When viewing the "Calendar" in the PWA, the count is cleared for that window icon, i.e. no count badge is shown on the icon. To see the click on "Mail" to view your emails and the badge will display the updated count on the icon again.

2022-06-24 (0.1.4)
- Added support for Outlook**.office.com

2022-06-14 (0.1.3)
- Fixed the Options page not displaying the options correctly due to the page's collapsed height.
- Improved overall script performance.

2022-05-05 (0.1.2)
- Added the option menu ("Inbox count only")
-- [Default] If unchecked/not ticked, will show the count of the Inbox unless it is not found or zero, in which case the extension looks for the next available folder count to be displayed on the PWA icon badge.
-- If checked/ticked, only the Inbox count will be shown on the PWA Icon Badge

2022-04-26 (0.1.1)
- Added support for Outlook** live mail and Outlook** office365 mail                    

擴展基本資訊

名稱 Email Taskbar/Dock Unread Badge Email Taskbar/Dock Unread Badge
ID lffolhkbihiajnigbnegpgfbdgapibfc
官方網址 https://chromewebstore.google.com/detail/email-taskbardock-unread/lffolhkbihiajnigbnegpgfbdgapibfc
簡介 Add an unread email count badge to Outlook's** PWA icon on supported OS's taskbar's or dock's
檔案大小 35.23 KB
安裝次數 115
目前版本 0.1.6
更新時間 2023-01-05
上架時間 2022-11-27
評分 5.00/5 共 2 次評分
開發者 Ocfinity (Jared)
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Email Taskbar\/Dock Unread Badge",
    "version": "0.1.6",
    "description": "Add an unread email count badge to Outlook's** PWA icon on supported OS's taskbar's or dock's",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/outlook.live.com\/mail\/*"
            ],
            "js": [
                "content1.js"
            ]
        },
        {
            "matches": [
                "*:\/\/outlook.office365.com\/mail\/*"
            ],
            "js": [
                "content1.js"
            ]
        },
        {
            "matches": [
                "*:\/\/outlook.office.com\/mail\/*"
            ],
            "js": [
                "content1.js"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "\/images\/ocfinity16.png",
        "32": "\/images\/ocfinity32.png",
        "48": "\/images\/ocfinity64.png",
        "128": "\/images\/ocfinity128.png"
    }
}