AI-Proctor-Moodle

AI-Proctor-Moodle

This is the chrome extention for the AI-Proctor system. Find more information about the system at https://www.ai-proctor.com/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AI-Proctor-Moodle",
  "version": "7.0",
  "manifest_version": 2,
  "description": "This is the chrome extention for the AI-Proctor system. Find more information about the system at  https://www.ai-proctor.com/",
  "icons": {
    "128": "AiProctor.png"
  },
  "browser_action": {
    "name": "AI-Proctor",
    "icons": [
      "AiProctor.png"
    ],
    "default_icon": "AiProctor.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.timesrnd.taylors.edu.my/*",
        "*://*.times.taylors.edu.my/*"
      ],
      "js": [
        "upload_watcher.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "upload_checker.js"
    ]
  },
  "permissions": [
    "webRequest",
    "tabs",
    "<all_urls>",
    "http://*/",
    "https://*/",
    "activeTab"
  ]
}