AutoCRN
Helps you a little bit when registering courses @ CityU
O que é AutoCRN?
AutoCRN é uma extensão do Chrome desenvolvida por lhc70000, e sua principal característica é "Helps you a little bit when registering courses @ CityU".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão AutoCRN
Baixe arquivos de extensão AutoCRN no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | AutoCRN |
ID | fnamipcehfmjomamkpgibdidlnlaobgf |
URL Oficial | https://chromewebstore.google.com/detail/autocrn/fnamipcehfmjomamkpgibdidlnlaobgf |
Descrição | Helps you a little bit when registering courses @ CityU |
Tamanho do Arquivo | 286 KB |
Contagem de Instalações | 920 |
Versão Atual | 1.0.1 |
Última Atualização | 2016-08-15 |
Data de Publicação | 2016-08-15 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | lhc70000 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |