Better UofT

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

Better UofT क्या है?

Better UofT Cayendo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds custom theming to UofT websites (Acorn, Quercus, Weblogin)"।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Better UofT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}