Lou's List Scheduler
A Scheduler made for students at University of Virginia that allows for creating academic schedules directly from Lou's List. -…
Vad är Lou's List Scheduler?
Lou's List Scheduler är en Chrome-tillägg utvecklad av MikeC., och dess huvudfunktion är "A Scheduler made for students at University of Virginia that allows for creating academic schedules directly from Lou's List. -…".
Tilläggsskärmbilder
Ladda ner Lou's List Scheduler-förlängningens CRX-fil
Ladda ner Lou's List Scheduler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | pkmcklbkifllghbiecdlmpdmdghjjbjd |
| Officiell webbadress | https://chromewebstore.google.com/detail/lous-list-scheduler/pkmcklbkifllghbiecdlmpdmdghjjbjd |
| Beskrivning | A Scheduler made for students at University of Virginia that allows for creating academic schedules directly from Lou's List. -… |
| Filstorlek | 134 KB |
| Antal Installationer | 24 |
| Aktuell Version | 0.7 |
| Senast Uppdaterad | 2020-09-30 |
| Publiceringsdatum | 2020-04-19 |
| Utvecklare | MikeC. |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |