Skip to content

Instantly share code, notes, and snippets.

@atommarvel
Created November 20, 2013 05:28
Show Gist options
  • Save atommarvel/7558195 to your computer and use it in GitHub Desktop.
Save atommarvel/7558195 to your computer and use it in GitHub Desktop.
Simply re-enables chrome's ability to autocomplete the login form for logging into tsquare,buzzport,degeeworks, etc
// ==UserScript==
// @name Auto GT Login
// @namespace http://www.atommarvel.com
// @version 1.0
// @description Simply re-enables chrome's ability to autocomplete the login form for logging into tsquare,buzzport,degeeworks, etc
// @match https://login.gatech.edu/*
// @copyright 2012+, Atom Marvel Raiff
// ==/UserScript==
document.getElementById("username").removeAttribute("autocomplete");
document.getElementById("password").removeAttribute("autocomplete");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment