Hanze AutoLogin

Hanze AutoLogin

Automate logins into services of the Hanzehogeschool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hanze AutoLogin",
  "description": "Automate logins into services of the Hanzehogeschool.",
  "author": "Auke Willem Oosterhoff <[email protected]>",
  "version": "0.1.1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.hanze.nl/*"
      ],
      "js": [
        "assets/js/jquery.js",
        "hal.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "assets/img/icon_16.png",
    "48": "assets/img/icon_48.png",
    "128": "assets/img/icon_128.png"
  },
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    "options.html"
  ]
}