TritonHelper
Multipurpose extension for UCSD students
What is TritonHelper?
TritonHelper is a Chrome extension developed by TritonHelper, and its main feature is "Multipurpose extension for UCSD students".
Extension Screenshots
Download TritonHelper Extension CRX File
Download TritonHelper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
TritonHelper is an extension to make life easier for UCSD students. Class Schedule: - view your class schedule with the click of a button - syncs a copy of your schedule to your computer so you can quickly see it when you need to, even when offline! Other features: - easy access to useful information such as your UCSD mailing address, parking information and more Go Tritons! UPDATE 4/3/14 (v1.3.7.1): Autofill now works with new sign-on page
Extension Basic Information
Name | TritonHelper |
ID | pjnboioiodjoemninfjeofoefcmalndk |
Official URL | https://chromewebstore.google.com/detail/tritonhelper/pjnboioiodjoemninfjeofoefcmalndk |
Description | Multipurpose extension for UCSD students |
File Size | 729 KB |
Installation Count | 95 |
Current Version | 1.3.7.1 |
Last Updated | 2016-02-23 |
Publish Date | 2016-02-22 |
Rating | 4.88/5 Total 8 Ratings |
Developer | TritonHelper |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TritonHelper", "description": "Multipurpose extension for UCSD students", "version": "1.3.7.1", "browser_action": { "default_icon": "simplelogo.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/a4.ucsd.edu\/tritON\/Authn\/*" ], "js": [ "login.js" ] }, { "matches": [ "*:\/\/act.ucsd.edu\/myTritonlink20\/display.htm" ], "js": [ "jquery-1.8.3.min.js", "schedule.js" ] }, { "matches": [ "*:\/\/act.ucsd.edu\/cgi-bin\/tritonlink.pl\/2\/students\/academic\/classes\/class_schedule.pl" ], "js": [ "jquery-1.8.3.min.js", "inject.js" ] } ], "web_accessible_resources": [ "inject.js" ] } |