D2L Coding

D2L coding support extension

D2L Coding란 무엇입니까?

D2L Coding은(는) anastasiya.developer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "D2L coding support extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

D2L Coding 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}