Better UofT
Adds custom theming to UofT websites (Acorn, Quercus, Weblogin)
O que é Better UofT?
Better UofT é uma extensão do Chrome desenvolvida por Cayendo, e sua principal característica é "Adds custom theming to UofT websites (Acorn, Quercus, Weblogin)".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Better UofT
Baixe arquivos de extensão Better UofT no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Better UofT |
ID | pdhlaecfceghplpbpfpdincbljjflgic |
URL Oficial | https://chromewebstore.google.com/detail/better-uoft/pdhlaecfceghplpbpfpdincbljjflgic |
Descrição | Adds custom theming to UofT websites (Acorn, Quercus, Weblogin) |
Tamanho do Arquivo | 137 KB |
Contagem de Instalações | 29 |
Versão Atual | 1.0.0 |
Última Atualização | 2021-09-21 |
Data de Publicação | 2021-09-14 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Cayendo |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://betteruoft.ca/ |
Idiomas Suportados | 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" ] } |