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文件
下載Planner Default View擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |