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
扩展基本信息
名称 | GeeksforGeeks Dark Mode |
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 |
电子邮箱 | [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" } ] } |