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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
]
} | |