Better Cam Moodle

Better Cam Moodle

Improves the Style of the Cambridge Moodle. Makes everything a bit more compact and readable

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Better Cam Moodle",
  "description": "Improves the Style of the Cambridge Moodle. Makes everything a bit more compact and readable",
  "version": "1.0.2",
  "author": "Lakee Sivaraya",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.vle.cam.ac.uk/*"
      ],
      "css": [
        "styles/common.css"
      ]
    },
    {
      "matches": [
        "https://www.vle.cam.ac.uk/my/",
        "https://www.vle.cam.ac.uk/my/index.php"
      ],
      "css": [
        "styles/home.css"
      ]
    },
    {
      "matches": [
        "https://www.vle.cam.ac.uk/course/view.php?id=*"
      ],
      "css": [
        "styles/page.css"
      ]
    },
    {
      "matches": [
        "https://www.vle.cam.ac.uk/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.vle.cam.ac.uk/login/index.php"
      ],
      "js": [
        "login-with-raven.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "styles/optional/remove-sidebar.css",
        "styles/optional/remove-edit-mode.css",
        "styles/optional/remove-useless-links.css",
        "styles/optional/remove-dashboard-right-block.css",
        "styles/optional/cleanup-right-block.css"
      ],
      "matches": [
        "https://www.vle.cam.ac.uk/*"
      ],
      "use_dynamic_url": true
    }
  ]
}