Lou's List Scheduler
A Scheduler made for students at University of Virginia that allows for creating academic schedules directly from Lou's List. -…
Lou's List Scheduler란 무엇입니까?
Lou's List Scheduler은(는) MikeC.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Scheduler made for students at University of Virginia that allows for creating academic schedules directly from Lou's List. -…"입니다.
확장 프로그램 스크린샷
Lou's List Scheduler 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A Scheduler made for students at University of Virginia that allows for creating academic schedules directly from Lou's List. - Use add buttons on the side to add classes to your schedule - Click the popup icon to turn on and off the extension and view your schedule - Use clear all button to empty your schedule Version 0.2 - Updated CSS and Added functionality Version 0.3 - Solved conflict classes layout issues - Updated CSS and Added functionality Version 0.4 - Regular update Version 0.5 - Bug fixes Version 0.6 - Update to new lous list Version 0.7 - Bug fixes
확장 프로그램 기본 정보
이름 | Lou's List Scheduler |
ID | pkmcklbkifllghbiecdlmpdmdghjjbjd |
공식 URL | https://chromewebstore.google.com/detail/lous-list-scheduler/pkmcklbkifllghbiecdlmpdmdghjjbjd |
설명 | A Scheduler made for students at University of Virginia that allows for creating academic schedules directly from Lou's List. -… |
파일 크기 | 134 KB |
설치 횟수 | 24 |
현재 버전 | 0.7 |
최근 업데이트 | 2020-09-30 |
출시 날짜 | 2020-04-19 |
개발자 | MikeC. |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lou's List Scheduler", "version": "0.7", "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/louslist.org\/\/*" ], "js": [ "jquery-3.4.1.js", "script.js", "popup.js", "update.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_icon": "logo.png" }, "permissions": [ "activeTab", "storage", "tabs" ] } |