D2L Coding
D2L coding support extension
什么是D2L Coding?
D2L Coding是由anastasiya.developer开发的Chrome扩展程序,该扩展的主要功能是“D2L coding support extension”。
扩展截图
下载D2L Coding扩展crx文件
下载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.                     扩展基本信息
| 名称 |   |  
| 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
}  |  |