schoolbox web extension :)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: remove contributor info

Willow 51bebf8e 1713b6c1

-24
-5
src/background.js
··· 1 - /* 2 - For developers: 3 - Please read the Contributing guidelines here --> https://github.com/schooltape/schooltape/blob/main/CONTRIBUTING.md 4 - */ 5 - 6 1 console.log("Service worker active!"); 7 2 8 3 // ----------------- Variables ----------------- //
-5
src/plugins/legacy-timetable/legacy-timetable.js
··· 1 - /* 2 - For developers: 3 - Please read the Contributing guidelines here --> https://github.com/schooltape/schooltape/blob/main/CONTRIBUTING.md 4 - */ 5 - 6 1 // If window pathname is "/" and the element with the class "timetable" exists, run the code 7 2 if (window.location.pathname === "/" && document.getElementsByClassName("timetable")[0]) { 8 3 let timetableContainer = document.querySelectorAll("[data-timetable-container]");
-5
src/plugins/modern-icons/modern-icons.css
··· 1 - /* 2 - For developers: 3 - Please read the Contributing guidelines here --> https://github.com/schooltape/schooltape/blob/main/CONTRIBUTING.md 4 - */ 5 - 6 1 /* This file is loaded after scripts/doc-end.js is loaded */ 7 2 8 3 /* fallback */
-5
src/plugins/modern-icons/modern-icons.js
··· 1 - /* 2 - For developers: 3 - Please read the Contributing guidelines here --> https://github.com/schooltape/schooltape/blob/main/CONTRIBUTING.md 4 - */ 5 - 6 1 const icons = [ 7 2 // [className, iconName] (material icons) 8 3 ["icon-teacher", "school"],
-4
src/plugins/subheader/subheader.js
··· 1 - /* 2 - For developers: 3 - Please read the Contributing guidelines here --> https://github.com/schooltape/schooltape/blob/main/CONTRIBUTING.md 4 - */ 5 1 let consoleStyle = "color: lightgreen; font-weight: bold;"; 6 2 // console.log(`%c[subheader.js]`, consoleStyle, "Injected subheader.js!"); 7 3