D2L Coding
D2L coding support extension
Cos'è D2L Coding?
D2L Coding è un'estensione di Chrome sviluppata da anastasiya.developer, e la sua funzione principale è "D2L coding support extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione D2L Coding
Scarica i file di estensione D2L Coding in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | D2L Coding |
ID | fopebacogkmokjehjalnbofbahfpddng |
URL Ufficiale | https://chromewebstore.google.com/detail/d2l-coding/fopebacogkmokjehjalnbofbahfpddng |
Descrizione | D2L coding support extension |
Dimensione del File | 15.6 KB |
Conteggio Installazioni | 17 |
Versione Corrente | 0.0.1.0 |
Ultimo Aggiornamento | 2021-07-09 |
Data di Pubblicazione | 2021-02-19 |
Sviluppatore | anastasiya.developer |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/AnaScarlet/d2l-extension |
Lingue Supportate | 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 } |