GeeksforGeeks Dark Mode
GfG Dark Mode
What is GeeksforGeeks Dark Mode?
GeeksforGeeks Dark Mode is a Chrome extension developed by https://anantpatni.com, and its main feature is "GfG Dark Mode".
Extension Screenshots
Download GeeksforGeeks Dark Mode Extension CRX File
Download GeeksforGeeks Dark Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | GeeksforGeeks Dark Mode |
ID | nmdpdgickahiikobclgoolmfgiibegke |
Official URL | https://chromewebstore.google.com/detail/geeksforgeeks-dark-mode/nmdpdgickahiikobclgoolmfgiibegke |
Description | GfG Dark Mode |
File Size | 37.94 KB |
Installation Count | 1,488 |
Current Version | 0.0.5 |
Last Updated | 2022-02-07 |
Publish Date | 2020-09-06 |
Rating | 4.11/5 Total 18 Ratings |
Developer | https://anantpatni.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |