Planner - Dark Mode

Take Microsoft Planner to the dark side!

Planner - Dark Mode क्या है?

Planner - Dark Mode Marty Harris द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take Microsoft Planner to the dark side!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Planner - Dark Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Makes Microsoft Planner render in Dark Mode - the same as when it renders within Teams configured for Dark Mode. It only uses CSS classes and styles that Microsoft include within the product - it doesn't add any new styles, it simply forces the selection of Dark Mode.

Note that Microsoft often change Planner and how it renders, so this may stop working at any time!

This extension does not collect any Planner or identity or other data. It only changes pages hosted at tasks.microsoft.com.                    

एक्सटेंशन की मूल जानकारी

नाम Planner - Dark Mode Planner - Dark Mode
ID mnmohepacnhlohgdefiieeglgijicomo
आधिकारिक URL https://chromewebstore.google.com/detail/planner-dark-mode/mnmohepacnhlohgdefiieeglgijicomo
विवरण Take Microsoft Planner to the dark side!
फ़ाइल का आकार 35.46 KB
स्थापना संख्या 812
वर्तमान संस्करण 0.1
अंतिम अपडेट 2021-03-09
प्रकाशन तिथि 2021-03-08
रेटिंग 3.67/5 कुल 12 रेटिंग्स
डेवलपर Marty Harris
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Planner - Dark Mode",
    "version": "0.1",
    "description": "Take Microsoft Planner to the dark side!",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/tasks.office.com\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "PlannerDarkMode.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "DarkPlanner128.png"
    }
}