Newlogy

Clean up and enhance Schoology's interface

Newlogyคืออะไร?

Newlogy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://erikboesen.com และคุณลักษณะหลักของมันคือ "Clean up and enhance Schoology's interface"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Newlogy

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}