Plugin for IITD Students

Plugin for IITD Students

This extension will assist students of IITD in their daily life ;)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Plugin for IITD Students",
  "description": "This extension will assist students of IITD in their daily life ;)",
  "version": "0.9",
  "browser_action": {
    "default_icon": "ico.png",
    "default_title": "Click me to open",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "moodle.js"
      ],
      "matches": [
        "https://moodle.iitd.ac.in/login/index.php"
      ]
    },
    {
      "js": [
        "webmail.js"
      ],
      "matches": [
        "https://webmail.iitd.ernet.in/roundcube/*"
      ]
    },
    {
      "js": [
        "webmail.js"
      ],
      "matches": [
        "https://webmail.iitd.ac.in/roundcube/*"
      ]
    },
    {
      "js": [
        "kerberos.js"
      ],
      "matches": [
        "https://proxy22.iitd.ernet.in/cgi-bin/proxy.cgi*"
      ]
    },
    {
      "js": [
        "kerberos.js"
      ],
      "matches": [
        "https://proxy62.iitd.ernet.in/cgi-bin/proxy.cgi*"
      ]
    },
    {
      "js": [
        "oauth.js"
      ],
      "matches": [
        "https://oauth.iitd.ac.in/*"
      ]
    }
  ],
  "background": {
    "page": "background.html"
  },
  "icons": {
    "16": "iitd.png",
    "32": "ico.png",
    "64": "iitd.png",
    "128": "iitd.png"
  },
  "permissions": [
    "storage",
    "notifications",
    "background",
    "tabs"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}