Newlogy

Clean up and enhance Schoology's interface

Newlogy क्या है?

Newlogy https://erikboesen.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Clean up and enhance Schoology's interface"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Newlogy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}