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)”。
扩展截图
下载Better UofT扩展crx文件
下载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 |
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" ] } |