Stop asking to save auth-code

Will set the "remember this computer" check box off by default in Google 2-Step authentication. To never save this computer. Good for work computers.

  1. // ==UserScript==
  2. // @name Stop asking to save auth-code
  3. // @description Will set the "remember this computer" check box off by default in Google 2-Step authentication. To never save this computer. Good for work computers.
  4. // @include https://accounts.google.com/*
  5. // @version 1.0
  6. // @namespace https://greasyfork.org/users/18002
  7. // ==/UserScript==
  8.  
  9. document.getElementById("trustDevice").checked = false;