Darkenify
Add Dark Mode to McGill MyCourses!
什么是Darkenify?
Darkenify是由preyansh98开发的Chrome扩展程序,该扩展的主要功能是“Add Dark Mode to McGill MyCourses!”。
扩展截图
下载Darkenify扩展crx文件
下载Darkenify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a chrome extension that enables a dark mode for McGill MyCourses! 扩展基本信息
| 名称 | |
| ID | lmdhejjpidgcjlhdfdjcofnbpgfjapho |
| 官方URL | https://chromewebstore.google.com/detail/darkenify/lmdhejjpidgcjlhdfdjcofnbpgfjapho |
| 简介 | Add Dark Mode to McGill MyCourses! |
| 文件大小 | 54.72 KB |
| 安装次数 | 43 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2021-12-24 |
| 上架时间 | 2020-05-17 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | preyansh98 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/preyansh98/darkenify |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Darkenify",
"author": "Preyansh Kaushik",
"version": "1.0.2",
"description": "Add Dark Mode to McGill MyCourses!",
"homepage_url": "https:\/\/github.com\/preyansh98\/darkenify",
"icons": {
"16": "static\/icons\/martlet-16x16.png",
"32": "static\/icons\/martlet-32x32.png",
"48": "static\/icons\/martlet-48x48.png",
"128": "static\/icons\/martlet-128x128.png"
},
"browser_action": {
"default_icon": {
"16": "static\/icons\/martlet-16x16.png",
"32": "static\/icons\/martlet-32x32.png"
},
"default_popup": "html\/popup.html",
"default_title": "Darkenify - Add Dark Mode to MyCourses"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/mycourses2.mcgill.ca\/*",
"http:\/\/mycourses2.mcgill.ca\/*"
],
"js": [
"js\/index.js"
]
}
],
"permissions": [
"storage",
"*:\/\/*.mycourses2.mcgill.ca\/*"
]
} | |