GeeksforGeeks Dark Mode
GfG Dark Mode
GeeksforGeeks Dark Modeとは何ですか?
GeeksforGeeks Dark Modeはhttps://anantpatni.comによって開発されたChromeの拡張機能で、その主な機能は「GfG Dark Mode」です。
拡張機能のスクリーンショット
GeeksforGeeks Dark Mode拡張機能のCRXファイルをダウンロード
GeeksforGeeks Dark Mode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
GeeksforGeeks dark mode is an extension that helps you quickly turn the website into a soothing dark theme.
Just click on the icon of the extension to toggle the theme.
Updates in v0.0.5 - Minor improvements on home page and sidenav 拡張機能の基本情報
| 名前 | |
| ID | nmdpdgickahiikobclgoolmfgiibegke |
| 公式URL | https://chromewebstore.google.com/detail/geeksforgeeks-dark-mode/nmdpdgickahiikobclgoolmfgiibegke |
| 説明 | GfG Dark Mode |
| ファイルサイズ | 37.94 KB |
| インストール数 | 1,488 |
| 現在のバージョン | 0.0.5 |
| 最終更新日 | 2022-02-07 |
| 公開日 | 2020-09-06 |
| 評価 | 4.11/5 合計 18 レビュー |
| 開発者 | https://anantpatni.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.0.5",
"name": "GeeksforGeeks Dark Mode",
"short_name": "dark-mode",
"description": "GfG Dark Mode",
"manifest_version": 2,
"permissions": [
"storage"
],
"background": {
"page": "lib\/chrome\/background.html"
},
"offline_enabled": true,
"web_accessible_resources": [
"data\/content_script\/*.css"
],
"browser_action": {
"default_title": "GfG Dark Mode",
"default_icon": {
"16": "data\/icons\/16.png",
"32": "data\/icons\/32.png",
"48": "data\/icons\/48.png",
"64": "data\/icons\/64.png"
}
},
"icons": {
"16": "data\/icons\/16.png",
"32": "data\/icons\/32.png",
"48": "data\/icons\/48.png",
"64": "data\/icons\/64.png",
"128": "data\/icons\/128.png"
},
"content_scripts": [
{
"exclude_globs": [
"*\/chrome\/newtab*"
],
"matches": [
"*:\/\/*.geeksforgeeks.org\/*"
],
"all_frames": true,
"match_about_blank": true,
"js": [
"data\/rules\/rules.js",
"data\/content_script\/inject.js"
],
"run_at": "document_start"
}
]
} | |