D2L Coding

D2L coding support extension

D2L Coding क्या है?

D2L Coding anastasiya.developer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "D2L coding support extension"।

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

screenshot
screenshot

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

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

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

                        Are you from the University of Calgary and wish that you were able to write code in D2L textboxes? Do you wish for a dark theme for D2L? Then, try the D2L Coding extension! This extension adds support for inserting tabs using the Tab key on your keyboard, like in a text editor. It also adds a dark theme to D2L, which you can turn on or off as you wish by using the extension's interface.                    

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

नाम D2L Coding D2L Coding
ID fopebacogkmokjehjalnbofbahfpddng
आधिकारिक URL https://chromewebstore.google.com/detail/d2l-coding/fopebacogkmokjehjalnbofbahfpddng
विवरण D2L coding support extension
फ़ाइल का आकार 15.6 KB
स्थापना संख्या 17
वर्तमान संस्करण 0.0.1.0
अंतिम अपडेट 2021-07-09
प्रकाशन तिथि 2021-02-19
डेवलपर anastasiya.developer
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/AnaScarlet/d2l-extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "D2L Coding",
    "version": "0.0.1.0",
    "description": "D2L coding support extension",
    "permissions": [
        "declarativeContent"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/d2l.ucalgary.ca\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icons8-code-16.png",
            "32": "images\/icons8-code-32.png",
            "48": "images\/icons8-code-48.png",
            "64": "images\/icons8-code-64.png"
        }
    },
    "icons": {
        "16": "images\/icons8-code-16.png",
        "32": "images\/icons8-code-32.png",
        "48": "images\/icons8-code-48.png",
        "64": "images\/icons8-code-64.png"
    },
    "manifest_version": 2
}