Dark Theme for Planner Web App

Dark mode for planner web application

什麼是Dark Theme for Planner Web App?

Dark Theme for Planner Web App是由Amirtha Rajan PKS開發的Chrome擴展程式,該擴展的主要功能是“Dark mode for planner web application”。

擴展截圖

screenshot
screenshot

下載Dark Theme for Planner Web App擴展crx文件

下載Dark Theme for Planner Web App擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Welcome to Dark Theme for Microsoft Planner

You can switch between dark mode and site default theme by clicking on the extension icon.

I would appreciate your comments and feedback for improving the extension regularly.

Thanks for checking out!!!

Update 2.4
- Changed Column Title colors

Update 2.3
- Changing extension name for compliance issue

Update 2.2
- Changing logo due to complaince issue

Update 2.1
- fixed whitebox text on pageload
- Theme will be on a delayed load of 2s

Update 2.0
- fixed popup background color updates

Update 1.9
- fix for popup dialog updates

Update 1.8
- minor bug fix on colors

Update 1.7
- Updated favourite and Chart bugs

Update 1.6
- New Update changes

Update 1.5
- minor changes on task cards

Update 1.4
- Added Shadows for task cards
- Update on changes for new profile menu 
- Minor bug fixes

Update 1.3
- Changes for Popup dialog
- Minor bug fixes

Update 1.2
- Now theme gets applied by default on page load
- User can now switch between themes by clicking on the extension icon

Update 1.1
- Changed the theme from black contrast to grey mode
- minor bug fixes

Github Repo: 
https://github.com/AmirthaRajan/MicrosoftPlannerDarkTheme                    

擴展基本資訊

名稱 Dark Theme for Planner Web App Dark Theme for Planner Web App
ID lafejnfjocpobabckpeeikppdmmfckld
官方網址 https://chromewebstore.google.com/detail/dark-theme-for-planner-we/lafejnfjocpobabckpeeikppdmmfckld
簡介 Dark mode for planner web application
檔案大小 65.18 KB
安裝次數 2,035
目前版本 2.4
更新時間 2022-03-04
上架時間 2020-07-12
評分 4.17/5 共 12 次評分
開發者 Amirtha Rajan PKS
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dark Theme for Planner Web App",
    "manifest_version": 2,
    "version": "2.4",
    "description": "Dark mode for planner web application",
    "background": {
        "matches": [
            "*:\/\/tasks.office.com\/*"
        ],
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/tasks.office.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "delay_load.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "name": "Change Theme",
        "default_icon": "icon128.png",
        "default_title": "Toggle theme mode"
    },
    "permissions": [
        "*:\/\/tasks.office.com\/*"
    ]
}