Auto Login Moodle

Auto Login Moodle

This extension allows automatically login to the Moodle system in University of Moratuwa

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto Login Moodle",
  "short_name": "Auto Login Moodle",
  "description": "This extension allows automatically login to the Moodle system in University of Moratuwa",
  "version": "1.0",
  "author": "Mirage Abeysekara",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png",
    "256": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "backgroundEvents.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "https://online.mrt.ac.lk/"
  ]
}