TritonHelper
Multipurpose extension for UCSD students
TritonHelperคืออะไร?
TritonHelper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TritonHelper และคุณลักษณะหลักของมันคือ "Multipurpose extension for UCSD students"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TritonHelper
ดาวน์โหลดไฟล์ส่วนขยาย TritonHelper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | TritonHelper |
ID | pjnboioiodjoemninfjeofoefcmalndk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tritonhelper/pjnboioiodjoemninfjeofoefcmalndk |
คำอธิบาย | Multipurpose extension for UCSD students |
ขนาดไฟล์ | 729 KB |
จำนวนการติดตั้ง | 95 |
เวอร์ชันปัจจุบัน | 1.3.7.1 |
อัปเดตครั้งล่าสุด | 2016-02-23 |
วันที่เผยแพร่ | 2016-02-22 |
คะแนน | 4.88/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | TritonHelper |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } |