Newlogy

Clean up and enhance Schoology's interface

Newlogy là gì?

Newlogy là một tiện ích mở rộng Chrome được phát triển bởi https://erikboesen.com, và tính năng chính của nó là "Clean up and enhance Schoology's interface".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Newlogy

Tải xuống các tệp mở rộng Newlogy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Newlogy Newlogy
ID bjcabjilfhmoahlpkffklacegnndmbbb
URL Chính Thức https://chromewebstore.google.com/detail/newlogy/bjcabjilfhmoahlpkffklacegnndmbbb
Mô tả Clean up and enhance Schoology's interface
Kích Thước Tệp 72.86 KB
Số Lần Cài Đặt 354
Phiên Bản Hiện Tại 2.4.5
Cập Nhật Lần Cuối 2022-09-10
Ngày Phát Hành 2019-05-02
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://erikboesen.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ErikBoesen/Newlogy
URL Trang Trợ Giúp https://github.com/ErikBoesen/Newlogy/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}