Compass Dark Theme

Compass Dark Theme

Turn your compass school portal into a simpler and sleek looking design!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Compass Dark Theme",
  "version": "1.2",
  "description": "Turn your compass school portal into a simpler and sleek looking design!",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "options.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.compass.education/*"
      ],
      "run_at": "document_start",
      "js": [
        "inject.js"
      ]
    },
    {
      "matches": [
        "https://*.compass.education/*"
      ],
      "js": [
        "site.js"
      ]
    }
  ],
  "icons": {
    "128": "logo.png"
  },
  "web_accessible_resources": [
    "images/*.png",
    "styles/*.css",
    "options.js"
  ]
}