Newlogy

Clean up and enhance Schoology's interface

Newlogy란 무엇입니까?

Newlogy은(는) https://erikboesen.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Clean up and enhance Schoology's interface"입니다.

확장 프로그램 스크린샷

screenshot

Newlogy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}