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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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 } |