Georgia Tech Services Auto Login

This extension logs you into gatech services automatically

What is Georgia Tech Services Auto Login?

Georgia Tech Services Auto Login is a Chrome extension developed by thomas4gshields, and its main feature is "This extension logs you into gatech services automatically".

Download Georgia Tech Services Auto Login Extension CRX File

Download Georgia Tech Services Auto Login extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Automatically logs you when you're on a login.gatech.edu page.
Useful for students. Not really anyone else. I hate writing descriptions. I hate people who write meta-descriptions and talk about hating writing descriptions.                    

Extension Basic Information

Name Georgia Tech Services Auto Login Georgia Tech Services Auto Login
ID ceakccgdkeealohoogkkmonkfijaegoi
Official URL https://chrome.google.com/webstore/detail/georgia-tech-services-aut/ceakccgdkeealohoogkkmonkfijaegoi
Description This extension logs you into gatech services automatically
File Size 57.83 KB
Installation Count 42
Current Version 0.0.1
Last Updated 2013-10-14
Publish Date 2013-10-14
Rating 4.67/5 Total 3 Ratings
Developer thomas4gshields
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Georgia Tech Services Auto Login",
    "description": "This extension logs you into gatech services automatically",
    "version": "0.0.1",
    "options_page": "options.html",
    "icons": {
        "48": "icon48.png"
    },
    "permissions": [],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/login.gatech.edu\/*"
            ],
            "js": [
                "login.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "gatech autologin",
        "default_popup": "options.html"
    }
}