AutoCRN
Helps you a little bit when registering courses @ CityU
AutoCRN là gì?
AutoCRN là một tiện ích mở rộng Chrome được phát triển bởi lhc70000, và tính năng chính của nó là "Helps you a little bit when registering courses @ CityU".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AutoCRN
Tải xuống các tệp mở rộng AutoCRN dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AutoCRN |
ID | fnamipcehfmjomamkpgibdidlnlaobgf |
URL Chính Thức | https://chromewebstore.google.com/detail/autocrn/fnamipcehfmjomamkpgibdidlnlaobgf |
Mô tả | Helps you a little bit when registering courses @ CityU |
Kích Thước Tệp | 286 KB |
Số Lần Cài Đặt | 920 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2016-08-15 |
Ngày Phát Hành | 2016-08-15 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | lhc70000 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |