HKU Portal One-click Login

HKU Portal One-click Login

Looking for a "Keep me logged in" function in HKU Portal? This is what you need.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HKU Portal One-click Login",
  "version": "5.3.5",
  "description": "Looking for a \"Keep me logged in\" function in HKU Portal? This is what you need.",
  "manifest_version": 2,
  "icons": {
    "48": "48.png",
    "128": "128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "webNavigation",
    "tabs",
    "*://*.hku.hk/*"
  ],
  "browser_action": {
    "default_icon": "128.png",
    "default_title": "HKU Portal",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://hkuportal.hku.hk/login.html",
        "*://sis-eportal.hku.hk/psp/ptlprod/EMPLOYEE/EMPL/h/?tab=DEFAULT",
        "*://moodle.hku.hk/"
      ],
      "js": [
        "login.js"
      ]
    }
  ]
}