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」です。
拡張機能のスクリーンショット
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 |
ID | lafejnfjocpobabckpeeikppdmmfckld |
公式URL | 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 |
Eメール | [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\/*" ] } |