Skip to content

Commit

Permalink
Merge pull request #189 from aopell/develop
Browse files Browse the repository at this point in the history
Version 6.3.1
  • Loading branch information
aopell authored Jun 6, 2020
2 parents 673e418 + 1c25ed2 commit 4d742a3
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- [Blue Theme](#blue-theme)
- [Custom Themes](#custom-themes)
- [Course Icons](#course-icons)
- [Quick Access](#quick-access)
- [Tooltips](#tooltips)
- [Courses In Common](#courses-in-common)
- [Miscellaneous Interface Improvements](#miscellaneous-interface-improvements)
Expand Down Expand Up @@ -73,6 +74,16 @@
- Built-in course icons for many courses* (LAUSD schools only)
- Custom themes can also introduce custom icons for courses

### Quick Access

![Quick access](https://i.imgur.com/VGnwHpq.png)

*Image: Example of the Quick Access pane on the homepage*
- Quick Access panel on the right sidebar on the homepage with one-click access to important pages*
- Links for grade report, courses, mastery, and more
- Each class has a link to its home page, grades page, and mastery page
- Click the icons next to each course to access its specific pages

### Tooltips

![Tooltips](https://i.imgur.com/9AOrZkC.gif)
Expand Down
2 changes: 1 addition & 1 deletion js/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
const BLACKLISTED_DOMAINS = ["asset-cdn.schoology.com", "ui.schoology.com", "www.schoology.com", "api.schoology.com", "developers.schoology.com", "schoology.com", "support.schoology.com"];
let dd = Setting.getValue("defaultDomain");

if (dd !== window.location.host && !BLACKLISTED_DOMAINS.includes(window.location.host) && !dd.match(/.*\.app\.schoology\.com/)) {
if (dd !== window.location.host && !BLACKLISTED_DOMAINS.includes(window.location.host) && !window.location.host.match(/.*\.app\.schoology\.com/)) {
Setting.setValue("defaultDomain", window.location.host);

let bgColor = document.querySelector("#header header").style.backgroundColor;
Expand Down
4 changes: 2 additions & 2 deletions js/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async function createQuickAccess() {
createElement("h3", ["h3-med"], {}, [
createElement("img", ["splus-logo-inline"], { src: chrome.runtime.getURL("imgs/plus-icon.png"), title: "Provided by Schoology Plus" }),
createElement("span", [], { textContent: "Quick Access" }),
createElement("a", ["quick-right-link"], { textContent: "Settings", href: "#splus-settings#setting-input-quickAccessVisibility" })
createElement("a", ["quick-right-link", "splus-track-clicks"], { id: "quick-access-splus-settings", textContent: "Settings", href: "#splus-settings#setting-input-quickAccessVisibility" })
]),
createElement("div", ["date-header", "first"], {}, [
createElement("h4", [], { textContent: "Pages" })
Expand All @@ -108,7 +108,7 @@ async function createQuickAccess() {
createElement("div", ["date-header"], {}, [
createElement("h4", [], {}, [
createElement("span", [], { textContent: "Courses" }),
createElement("a", ["quick-right-link"], { textContent: "Reorder", href: "/courses?reorder" })
createElement("a", ["quick-right-link", "splus-track-clicks"], { id: "quick-access-reorder", textContent: "Reorder", href: "/courses?reorder" })
])
])
);
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"id": "[email protected]"
}
},
"version": "6.3",
"version": "6.3.1",
"icons": {
"128": "imgs/[email protected]",
"64": "imgs/[email protected]",
Expand Down
6 changes: 6 additions & 0 deletions webstore-description.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ Course Icons
- Built-in course icons for many courses*
- Custom themes can also introduce custom icons for courses

Quick Access
- Quick Access panel on the right sidebar on the homepage with one-click access to important pages*
- Links for grade report, courses, mastery, and more
- Each class has a link to its home page, grades page, and mastery page
- Click the icons next to each course to access its specific pages

Tooltips
- Toolips for items on the materials page show previews
- Assignments show score and grade category
Expand Down

0 comments on commit 4d742a3

Please sign in to comment.