Newlogy

Clean up and enhance Schoology's interface

什么是Newlogy?

Newlogy是由https://erikboesen.com开发的Chrome扩展程序,该扩展的主要功能是“Clean up and enhance Schoology's interface”。

扩展截图

screenshot

下载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 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
电子邮箱 [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"
    ]
}