Better UofT

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

Better UofT란 무엇입니까?

Better UofT은(는) Cayendo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds custom theming to UofT websites (Acorn, Quercus, Weblogin)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Better UofT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}