TouroOne Login

TouroOne Login

Automatically logs TouroOne users into TouroOne.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TouroOne Login",
  "description": "Automatically logs TouroOne users into TouroOne.",
  "version": "1.1",
  "background": {
    "page": "bg.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://touroone.touro.edu/sso/login*",
        "https://touroone.portal.touro.edu/"
      ],
      "js": [
        "content.js",
        "jquery.js"
      ]
    }
  ],
  "icons": {
    "19": "images/to_small.png",
    "48": "images/to.png"
  },
  "browser_action": {
    "default_title": "TouroOne Login",
    "default_popup": "popup.html",
    "default_icon": "images/to.png"
  },
  "permissions": [
    "storage",
    "nativeMessaging",
    "tabs"
  ]
}