Newlogy
Clean up and enhance Schoology's interface
Newlogyとは何ですか?
Newlogyはhttps://erikboesen.comによって開発されたChromeの拡張機能で、その主な機能は「Clean up and enhance Schoology's interface」です。
拡張機能のスクリーンショット
Newlogy拡張機能のCRXファイルをダウンロード
Newlogy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Newlogy |
ID | bjcabjilfhmoahlpkffklacegnndmbbb |
公式URL | https://chromewebstore.google.com/detail/newlogy/bjcabjilfhmoahlpkffklacegnndmbbb |
説明 | Clean up and enhance Schoology's interface |
ファイルサイズ | 72.86 KB |
インストール数 | 354 |
現在のバージョン | 2.4.5 |
最終更新日 | 2022-09-10 |
公開日 | 2019-05-02 |
評価 | 4.83/5 合計 6 レビュー |
開発者 | https://erikboesen.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/ErikBoesen/Newlogy |
ヘルプページのURL | https://github.com/ErikBoesen/Newlogy/issues |
対応言語 | 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" ] } |