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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Help you save your default "Group By" view selection in Microsoft Planner web application"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Planner Default View एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |