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」です。

拡張機能のスクリーンショット

screenshot
screenshot

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 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
Eメール [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"
    ]
}