Better UofT

Adds custom theming to UofT websites (Acorn, Quercus, Weblogin)

Τι είναι το Better UofT;

Το Better UofT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cayendo, και η κύρια λειτουργία του είναι "Adds custom theming to UofT websites (Acorn, Quercus, Weblogin)".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Better UofT

Λήψη αρχείων επέκτασης Better UofT σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Have you ever wanted dark mode for UofT websites? Perhaps, you have wanted to customize your user interface to utilize your favorite colors? This is the extension for you.

Better UofT provides University of Toronto websites with the option for custom theming that will help you to stay immersed within the rest of your dark mode content. Currently the extension supports Weblogin fully, with support for Acorn and Quercus in the works!

Clicking on the extension icon will open the extension's drop down where you are able to toggle between dark and light mode as well as turn the extension on and off. Additionally, you are able to open the custom theming panel which allows you to change the paper and accent color's hue and saturation.

Visit our website to learn more about the extension and experiment with our custom theming, https://betteruoft.ca.

This is an open-source project. To contribute or to see the latest developments visit the GitHub repository at https://github.com/Cayendo-Org/better-uoft.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Better UofT Better UofT
ID pdhlaecfceghplpbpfpdincbljjflgic
Επίσημο URL https://chromewebstore.google.com/detail/better-uoft/pdhlaecfceghplpbpfpdincbljjflgic
Περιγραφή Adds custom theming to UofT websites (Acorn, Quercus, Weblogin)
Μέγεθος Αρχείου 137 KB
Αριθμός Εγκαταστάσεων 29
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2021-09-21
Ημερομηνία Δημοσίευσης 2021-09-14
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Cayendo
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://betteruoft.ca/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better UofT",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Adds custom theming to UofT websites (Acorn, Quercus, Weblogin)",
    "background": {
        "scripts": [
            "hot-reload.js",
            "action.js"
        ]
    },
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/acorn.utoronto.ca\/sws\/*"
            ],
            "run_at": "document_start",
            "css": [
                "acorn\/styles.css"
            ],
            "js": [
                "inject.js"
            ]
        },
        {
            "matches": [
                "https:\/\/q.utoronto.ca\/*"
            ],
            "run_at": "document_start",
            "css": [
                "quercus\/styles.css"
            ],
            "js": [
                "inject.js"
            ]
        },
        {
            "matches": [
                "https:\/\/idpz.utorauth.utoronto.ca\/*",
                "https:\/\/weblogin.utoronto.ca\/*"
            ],
            "run_at": "document_start",
            "css": [
                "weblogin\/styles.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}