AutoCRN
Helps you a little bit when registering courses @ CityU
AutoCRN क्या है?
AutoCRN lhc70000 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps you a little bit when registering courses @ CityU"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AutoCRN एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } } |