Maynooth University Moodle Login Plugin

Maynooth University Moodle Login Plugin

This plugin will automatically travel to the Office 365 login page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Maynooth University Moodle Login Plugin",
  "description": "This plugin will automatically travel to the Office 365 login page.",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "https://able.moodle.maynoothuniversity.ie/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "moodle.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": []
}