Walnut
A dark theme for Acadia's Acorn Web App
What is Walnut?
Walnut is a Chrome extension developed by Unknown, and its main feature is "A dark theme for Acadia's Acorn Web App".
Extension Screenshots
Download Walnut Extension CRX File
Download Walnut 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
An extension to add a dark mode for Acadia University's Moodle web app. Basically an incredibly niche extension.
Extension Basic Information
Name | Walnut |
ID | hgnglcmbmkfnbhbobnpogkdcfkgfdbed |
Official URL | https://chromewebstore.google.com/detail/walnut/hgnglcmbmkfnbhbobnpogkdcfkgfdbed |
Description | A dark theme for Acadia's Acorn Web App |
File Size | 29.14 KB |
Installation Count | 28 |
Current Version | 1.6.0 |
Last Updated | 2020-02-12 |
Publish Date | 2020-02-12 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Walnut", "version": "1.6.0", "description": "A dark theme for Acadia's Acorn Web App", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "loading.css" ], "matches": [ "https:\/\/acorn.acadiau.ca\/*" ] } ], "browser_action": { "default_title": "Walnut", "default_popup": "popup.html", "default_icon": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } }, "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } } |