Turn your compass school portal into a simpler and sleek looking design!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
]
}