AutoCRN
Helps you a little bit when registering courses @ CityU
Qu'est-ce que AutoCRN ?
AutoCRN est une extension Chrome développée par lhc70000, et sa fonction principale est "Helps you a little bit when registering courses @ CityU".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AutoCRN
Téléchargez les fichiers d'extension AutoCRN au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This is an open source project. Contribution is welcomed at https://github.com/lhc70000/AutoCRN_Chrome. Features: - Fill in CRNs - Submit CRNs automatically - Refresh every 5 minutes to avoid session timeout (idea from Shawn) - Auto refresh at an exact time - Retry when page load time > 5s (not sure whether it works) IMPORTANT: - Please read and understand the regulations and restrictions of ARRO, and consider whether it's appropriate before you actually use it. - The project is experimental and unstable. The developer is not responsible for any possible consequence.
Informations de Base sur l'Extension
Nom | AutoCRN |
ID | fnamipcehfmjomamkpgibdidlnlaobgf |
URL Officiel | https://chromewebstore.google.com/detail/autocrn/fnamipcehfmjomamkpgibdidlnlaobgf |
Description | Helps you a little bit when registering courses @ CityU |
Taille du Fichier | 286 KB |
Nombre d'Installations | 920 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2016-08-15 |
Date de Publication | 2016-08-15 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | lhc70000 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AutoCRN", "description": "Helps you a little bit when registering courses @ CityU", "version": "1.0.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "CityU Course Registration Helper" }, "permissions": [ "activeTab", "storage", "https:\/\/banweb.cityu.edu.hk\/" ], "content_scripts": [ { "matches": [ "https:\/\/banweb.cityu.edu.hk\/*" ], "js": [ "add_crn.js" ], "run_at": "document_start" } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |