Schoology Improvements

A Extension that adds darkmode along with other features to schoology

What is Schoology Improvements?

Schoology Improvements is a Chrome extension developed by Wyatt Whorton, and its main feature is "A Extension that adds darkmode along with other features to schoology".

Extension Screenshots

screenshot

Download Schoology Improvements Extension CRX File

Download Schoology Improvements extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Improves the overall user exipierence and user interaction with schoology                    

Extension Basic Information

Name Schoology Improvements Schoology Improvements
ID djcedadddodkobaegkkcjpanffibkhbe
Official URL https://chromewebstore.google.com/detail/schoology-improvements/djcedadddodkobaegkkcjpanffibkhbe
Description A Extension that adds darkmode along with other features to schoology
File Size 667 KB
Installation Count 122
Current Version 1.0.0
Last Updated 2021-01-12
Publish Date 2021-01-12
Rating 5.00/5 Total 1 Ratings
Developer Wyatt Whorton
Email [email protected]
Payment Type free
Extension Website https://github.com/ChickenBone/dps-schoology
Help Page URL https://github.com/ChickenBone/dps-schoology/issues
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            ".\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": ".\/popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                ".\/contentScripts.js"
            ],
            "css": [
                ".\/contentScripts.js"
            ],
            "matches": [
                "http:\/\/schoology.dpsk12.org\/*",
                "https:\/\/schoology.dpsk12.org\/*"
            ],
            "run_at": "document_end"
        },
        {
            "all_frames": true,
            "js": [
                ".\/hideAtStart.js"
            ],
            "css": [
                ".\/hideAtStart.js"
            ],
            "matches": [
                "http:\/\/schoology.dpsk12.org\/*",
                "https:\/\/schoology.dpsk12.org\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "A Extension that adds darkmode along with other features to schoology",
    "icons": {
        "16": "assets\/icons\/icon_16.png",
        "32": "assets\/icons\/icon_32.png",
        "64": "assets\/icons\/icon_64.png",
        "128": "assets\/icons\/icon_128.png"
    },
    "manifest_version": 2,
    "name": "Schoology Improvements",
    "options_ui": {
        "chrome_style": false,
        "page": ".\/options.html"
    },
    "permissions": [
        "http:\/\/schoology.dpsk12.org\/*",
        "https:\/\/schoology.dpsk12.org\/*",
        "background",
        "storage",
        "webRequest"
    ],
    "version": "1.0.0",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}