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 |
| Eメール | [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\/*"
]
} | |