Planner Default View
Help you save your default "Group By" view selection in Microsoft Planner web application
Planner Default View란 무엇입니까?
Planner Default View은(는) Shlomi Dayan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Help you save your default "Group By" view selection in Microsoft Planner web application"입니다.
확장 프로그램 스크린샷
Planner Default View 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Planner Default View extension sets Default Group By option for MS Planner plans and allows you to select your default group by from the extension icon popup. after selecting your default "Group By" and reload MS Planner web app, Planner Default View will remember your previous selection and organize your tasks accordingly Whats new in 1.0.0.9? - Support coloring planner cards after Microsoft changed the app structure in latest update Whats new in 1.0.0.8? - Bug fixes - UI Changes - Coloring your tasks according to labels color - very useful Credits to Marty Harris for sharing the code to color the Planner cards which I have implemented in Planner Default View There is a separate extension published by Marty Harris called "Colourful Planner" you can find it in chrome web store
확장 프로그램 기본 정보
이름 | Planner Default View |
ID | memnkhinbiilklahnhcpkpflpoplldng |
공식 URL | https://chromewebstore.google.com/detail/planner-default-view/memnkhinbiilklahnhcpkpflpoplldng |
설명 | Help you save your default "Group By" view selection in Microsoft Planner web application |
파일 크기 | 109 KB |
설치 횟수 | 1,033 |
현재 버전 | 1.0.0.9 |
최근 업데이트 | 2020-03-12 |
출시 날짜 | 2020-03-10 |
평점 | 4.11/5 총 18 개의 평점 |
개발자 | Shlomi Dayan |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Planner Default View", "version": "1.0.0.9", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "Help you save your default \"Group By\" view selection in Microsoft Planner web application", "author": "Shlomi Dayan, [email protected]", "content_scripts": [ { "matches": [ "https:\/\/tasks.office.com\/*" ], "js": [ "libs\/jquery-3.4.1.min.js", "js\/content.js" ], "run_at": "document_idle" } ], "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "tabs", "https:\/\/tasks.office.com\/*", "storage" ] } |