Udemy Dark Theme
A dark theme for the udemy website
Udemy Dark Themeとは何ですか?
Udemy Dark Themeはudemy-dark-theme-devsによって開発されたChromeの拡張機能で、その主な機能は「A dark theme for the udemy website」です。
拡張機能のスクリーンショット
Udemy Dark Theme拡張機能のCRXファイルをダウンロード
Udemy Dark Theme拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds dark theme for the udemy.com website
Features:
- adds a dark theme for all views inside the udemy.com domain
- allows you to configure custom colours to create your own theme
--------------------
Github: https://github.com/Pachciar3/udemy-dark-mode-extension
Authors:
Dawid - https://github.com/Pachciar3/
Menno - https://mennoveerkamp.com/ 拡張機能の基本情報
| 名前 | |
| ID | mnloceeicbhfhinjcnfieonmpindkmpb |
| 公式URL | https://chromewebstore.google.com/detail/udemy-dark-theme/mnloceeicbhfhinjcnfieonmpindkmpb |
| 説明 | A dark theme for the udemy website |
| ファイルサイズ | 51.25 KB |
| インストール数 | 14,161 |
| 現在のバージョン | 2.1.5 |
| 最終更新日 | 2023-11-02 |
| 公開日 | 2020-05-03 |
| 評価 | 4.31/5 合計 74 レビュー |
| 開発者 | udemy-dark-theme-devs |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Udemy Dark Theme",
"version": "2.1.5",
"description": "A dark theme for the udemy website",
"permissions": [
"activeTab",
"declarativeContent",
"storage",
"scripting"
],
"options_page": "options.html",
"background": {
"service_worker": "serviceWorker.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/udemy_dark_mode16.png",
"32": "icons\/udemy_dark_mode32.png",
"48": "icons\/udemy_dark_mode48.png",
"128": "icons\/udemy_dark_mode128.png"
}
},
"icons": {
"16": "icons\/udemy_dark_mode16.png",
"32": "icons\/udemy_dark_mode32.png",
"48": "icons\/udemy_dark_mode48.png",
"128": "icons\/udemy_dark_mode128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.udemy.com\/*"
],
"css": [
"styles\/background.css"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"manifest_version": 3
} | |