Darth Hilfinger
An extension for toggling dark mode on the CS61B website.
What is Darth Hilfinger?
Darth Hilfinger is a Chrome extension developed by Joe Mo, and its main feature is "An extension for toggling dark mode on the CS61B website.".
Extension Screenshots
Download Darth Hilfinger Extension CRX File
Download Darth Hilfinger 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
A dark theme for Berkeley's CS61B Data Structures course website
Extension Basic Information
Name | Darth Hilfinger |
ID | mllgckjnjcpjglbckdinhliigfeckonf |
Official URL | https://chromewebstore.google.com/detail/darth-hilfinger/mllgckjnjcpjglbckdinhliigfeckonf |
Description | An extension for toggling dark mode on the CS61B website. |
File Size | 13.54 KB |
Installation Count | 14 |
Current Version | 1.0.0 |
Last Updated | 2020-01-23 |
Publish Date | 2020-01-23 |
Developer | Joe Mo |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_title": "CS61B Dark Mode (Enabled)" }, "content_scripts": [ { "js": [ "js\/content.js" ], "matches": [ "*:\/\/inst.eecs.berkeley.edu\/~cs61b*" ] } ], "description": "An extension for toggling dark mode on the CS61B website.", "icons": { "48": "icons\/icon48.png", "96": "icons\/icon96.png" }, "manifest_version": 2, "name": "Darth Hilfinger", "version": "1.0.0", "web_accessible_resources": [ "css\/override.css" ] } |