D2L Coding
D2L coding support extension
D2L Coding là gì?
D2L Coding là một tiện ích mở rộng Chrome được phát triển bởi anastasiya.developer, và tính năng chính của nó là "D2L coding support extension".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng D2L Coding
Tải xuống các tệp mở rộng D2L Coding dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | D2L Coding |
ID | fopebacogkmokjehjalnbofbahfpddng |
URL Chính Thức | https://chromewebstore.google.com/detail/d2l-coding/fopebacogkmokjehjalnbofbahfpddng |
Mô tả | D2L coding support extension |
Kích Thước Tệp | 15.6 KB |
Số Lần Cài Đặt | 17 |
Phiên Bản Hiện Tại | 0.0.1.0 |
Cập Nhật Lần Cuối | 2021-07-09 |
Ngày Phát Hành | 2021-02-19 |
Nhà Phát Triển | anastasiya.developer |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/AnaScarlet/d2l-extension |
Ngôn Ngữ Được Hỗ Trợ | 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 } |