Schoology Improvements

A Extension that adds darkmode along with other features to schoology

Wat is Schoology Improvements?

Schoology Improvements is een Chrome-extensie ontwikkeld door Wyatt Whorton, en de belangrijkste functie is "A Extension that adds darkmode along with other features to schoology".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Schoology Improvements

Download Schoology Improvements-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Improves the overall user exipierence and user interaction with schoology                    

Basisinformatie over de Extensie

Naam Schoology Improvements Schoology Improvements
ID djcedadddodkobaegkkcjpanffibkhbe
Officiële URL https://chromewebstore.google.com/detail/schoology-improvements/djcedadddodkobaegkkcjpanffibkhbe
Beschrijving A Extension that adds darkmode along with other features to schoology
Bestandsgrootte 667 KB
Aantal Installaties 122
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-01-12
Publicatiedatum 2021-01-12
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Wyatt Whorton
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ChickenBone/dps-schoology
Help Pagina-URL https://github.com/ChickenBone/dps-schoology/issues
Ondersteunde Talen 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'"
}