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 |
| 官方網址 | 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\/*"
]
} | |