AutoCRN

Helps you a little bit when registering courses @ CityU

什么是AutoCRN?

AutoCRN是由lhc70000开发的Chrome扩展程序,该扩展的主要功能是“Helps you a little bit when registering courses @ CityU”。

扩展截图

screenshot

下载AutoCRN扩展crx文件

下载AutoCRN扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 AutoCRN AutoCRN
ID fnamipcehfmjomamkpgibdidlnlaobgf
官方URL https://chromewebstore.google.com/detail/autocrn/fnamipcehfmjomamkpgibdidlnlaobgf
简介 Helps you a little bit when registering courses @ CityU
文件大小 286 KB
安装次数 920
当前版本 1.0.1
更新时间 2016-08-15
上架时间 2016-08-15
评分 5.00/5 共1次评分
开发者 lhc70000
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}