Access++
Adds 5 tools to Iowa State’s Access Plus: Meal counter, Schedule while registering, Rate My Professor, export classes, export emails
Access++ là gì?
Access++ là một tiện ích mở rộng Chrome được phát triển bởi A++, và tính năng chính của nó là "Adds 5 tools to Iowa State’s Access Plus: Meal counter, Schedule while registering, Rate My Professor, export classes, export emails".
Ả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 Access++
Tải xuống các tệp mở rộng Access++ 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
Access Plus Plus is A suite of improvements to Iowa State's Access Plus. This extension adds four major pieces of functionality: •Rate My Professor integration on the schedule page. •See your schedule update in real-time on the registration page as you add and remove classes •Track how many meals you are above or below budget on a daily, weekly, or monthly basis •Export your calendar to .ics (compatible with Google Calendar, Outlook, iCal, and most calendar application) with just one click.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Access++ |
ID | cdchknkpbdccmalfabhdjjkckajhbdif |
URL Chính Thức | https://chromewebstore.google.com/detail/access++/cdchknkpbdccmalfabhdjjkckajhbdif |
Mô tả | Adds 5 tools to Iowa State’s Access Plus: Meal counter, Schedule while registering, Rate My Professor, export classes, export emails |
Kích Thước Tệp | 231 KB |
Số Lần Cài Đặt | 32 |
Phiên Bản Hiện Tại | 2.0.0.0 |
Cập Nhật Lần Cuối | 2016-02-20 |
Ngày Phát Hành | 2016-02-20 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | A++ |
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": "Access++", "description": "Adds 5 tools to Iowa State\u2019s Access Plus: Meal counter, Schedule while registering, Rate My Professor, export classes, export emails", "version": "2.0.0.0", "permissions": [ "activeTab", "tabs", "alarms", "notifications", "https:\/\/accessplus.iastate.edu\/*", "webNavigation" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/accessplus.iastate.edu\/*" ], "js": [ "jquery.min.js", "ClassScheduleFunctions\/dependencies.js", "ClassScheduleFunctions\/classSchedFunc.js" ] }, { "matches": [ "https:\/\/accessplus.iastate.edu\/servlet\/adp.A_Plus" ], "js": [ "jquery.min.js", "ClassScheduleFunctions\/dependencies.js", "MealCounter\/meals.js", "emailExport.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/accessplus.iastate.edu\/RH05\/*" ], "js": [ "jquery.min.js", "emailExport.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/accessplus.iastate.edu\/*" ], "js": [ "jquery.min.js", "Registration\/registration.js" ], "run_at": "document_end" } ] } |