myGCC Session Extender

myGCC Session Extender

Prevents myGCC from automatically logging out.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "myGCC Session Extender",
  "description": "Prevents myGCC from automatically logging out.",
  "version": "1.0",
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "page_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://my.gcc.edu/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}