Lambda School Darkmode

Lambda School Darkmode

Dark mode theme for the Lambda School Training Kit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Lambda School Darkmode",
  "version": "1.1",
  "description": "Dark mode theme for the Lambda School Training Kit",
  "permissions": [
    "*://learn.lambdaschool.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "48": "icons/lambda-48.png",
    "96": "icons/lambda-96.png"
  },
  "page_action": {
    "default_icon": "icons/lambda-48-off.png",
    "default_title": "Lambda School Darkmode (off)"
  }
}