Newlogy
Clean up and enhance Schoology's interface
Qu'est-ce que Newlogy ?
Newlogy est une extension Chrome développée par https://erikboesen.com, et sa fonction principale est "Clean up and enhance Schoology's interface".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Newlogy
Téléchargez les fichiers d'extension Newlogy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Newlogy |
ID | bjcabjilfhmoahlpkffklacegnndmbbb |
URL Officiel | https://chromewebstore.google.com/detail/newlogy/bjcabjilfhmoahlpkffklacegnndmbbb |
Description | Clean up and enhance Schoology's interface |
Taille du Fichier | 72.86 KB |
Nombre d'Installations | 354 |
Version Actuelle | 2.4.5 |
Dernière Mise à Jour | 2022-09-10 |
Date de Publication | 2019-05-02 |
Évaluation | 4.83/5 Total 6 Évaluations |
Développeur | https://erikboesen.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ErikBoesen/Newlogy |
URL de la Page d'Aide | https://github.com/ErikBoesen/Newlogy/issues |
Langues Prises en Charge | 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" ] } |