D2L Coding

D2L coding support extension

D2L Codingคืออะไร?

D2L Coding เป็นส่วนขยายของ Chrome ที่พัฒนาโดย anastasiya.developer และคุณลักษณะหลักของมันคือ "D2L coding support extension"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย D2L Coding

ดาวน์โหลดไฟล์ส่วนขยาย D2L Coding ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}