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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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\/*" ] } |