Planner Default View

Help you save your default "Group By" view selection in Microsoft Planner web application

Planner Default Viewคืออะไร?

Planner Default View เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shlomi Dayan และคุณลักษณะหลักของมันคือ "Help you save your default "Group By" view selection in Microsoft Planner web application"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Planner Default View

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}