Moodle Girl Restore

Moodle Girl Restore

This extension restores the UNSW Moodle hompage image back to the original Moodle girl.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Moodle Girl Restore",
  "description": "This extension restores the UNSW Moodle hompage image back to the original Moodle girl.",
  "version": "0.1",
  "author": "Aaron Ramshaw",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "https://moodle.telt.unsw.edu.au/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://moodle.telt.unsw.edu.au/*"
      ],
      "js": [
        "mood.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "mood.css",
    "moodlegirl.jpg"
  ]
}