CityU Quick Course Adder
To help you fill the CRNs quickly.
Cos'è CityU Quick Course Adder?
CityU Quick Course Adder è un'estensione di Chrome sviluppata da h.mattjunk, e la sua funzione principale è "To help you fill the CRNs quickly.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CityU Quick Course Adder
Scarica i file di estensione CityU Quick Course Adder 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
The CityU Quick Course Adder is a helpful Chrome extension that makes entering CRNs faster. You just preload your CRNs, and the extension will automatically instantly put them on the 'Add or Drop Classes' page for you. It's a real time-saver! This is an updated version, building on the original 2016 version by Sam (ideati.me), which is no longer available.
Informazioni di Base sull'Estensione
Nome | CityU Quick Course Adder |
ID | ailiklnkhplhpoeakbpcgomfdglmojbh |
URL Ufficiale | https://chromewebstore.google.com/detail/cityu-quick-course-adder/ailiklnkhplhpoeakbpcgomfdglmojbh |
Descrizione | To help you fill the CRNs quickly. |
Dimensione del File | 34.91 KB |
Conteggio Installazioni | 459 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-09-06 |
Data di Pubblicazione | 2023-09-06 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | h.mattjunk |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension |
URL della Pagina di Aiuto | https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/How-To-Use%3F |
URL della Pagina della Politica sulla Privacy | https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/Privacy-Policy |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "CityU Quick Course Adder", "description": "To help you fill the CRNs quickly.", "version": "1.0", "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/banweb.cityu.edu.hk\/*", "http:\/\/banweb.cityu.edu.hk\/*" ], "js": [ "contentScript.js" ], "include_globs": [ "*bwskfreg.P_AltPin*" ] } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |