Newlogy
Clean up and enhance Schoology's interface
Co je Newlogy?
Newlogy je rozšíření Chrome vyvinuté https://erikboesen.com, a jeho hlavní funkcí je „Clean up and enhance Schoology's interface“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Newlogy
Stáhněte si soubory rozšíření Newlogy ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Newlogy simplifies the Schoology Learning Management System interface, removing seldom-used components and modernizing styling. Changes: * Replace school logo with a simple "Home" link * Remove "RECENT ACTIVITY" and "COURSE DASHBOARD" tabs * Display course and group menus as a list again, not as a grid * Use normal capitalization for header tabs to match rest of interface * Disable school-colored links to match blue color scheme * Replace blurry smiley faces next to like buttons with thumbs-up emoji * Use consistent text coloring * Conform better to new modern design language * Add flag emoji next to language selection, just for fun * Remove logged-in user's name from header * Literally hundreds of other graphical tweaks The code for this extension is available on GitHub: https://github.com/ErikBoesen/Newlogy
Základní Informace o Rozšíření
Název | Newlogy |
ID | bjcabjilfhmoahlpkffklacegnndmbbb |
Oficiální URL | https://chromewebstore.google.com/detail/newlogy/bjcabjilfhmoahlpkffklacegnndmbbb |
Popis | Clean up and enhance Schoology's interface |
Velikost souboru | 72.86 KB |
Počet instalací | 354 |
Aktuální Verze | 2.4.5 |
Poslední Aktualizace | 2022-09-10 |
Datum Vydání | 2019-05-02 |
Hodnocení | 4.83/5 Celkem 6 Hodnocení |
Vývojář | https://erikboesen.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/ErikBoesen/Newlogy |
URL Stránky Nápovědy | https://github.com/ErikBoesen/Newlogy/issues |
Podporované Jazyky | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Newlogy", "description": "Clean up and enhance Schoology's interface", "version": "2.4.5", "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "https:\/\/*.schoology.com\/*", "https:\/\/schoology.com\/*" ], "css": [ "css\/clean.css", "css\/floating_header.css" ], "run_at": "document_start" }, { "matches": [ "https:\/\/*.schoology.com\/*", "https:\/\/schoology.com\/*" ], "js": [ "clean.js" ] }, { "matches": [ "https:\/\/fccps.schoology.com\/user\/3503469*" ], "js": [ "dev.js" ], "css": [ "css\/dev.css" ] } ], "background": { "scripts": [ "background.js" ] }, "icons": { "32": "icons\/32.png", "64": "icons\/64.png", "128": "icons\/128.png", "256": "icons\/256.png" }, "permissions": [ "storage" ], "web_accessible_resources": [ "options\/options.html", "module_bundle_*.js" ] } |