Uncheck Google Two Factor Authorization Trust This Device

Disable google's automatic "Dont ask again on this computer" checkbox when entering Two Factor code

  1. // ==UserScript==
  2. // @author Christopher Engel - christopher.engel@outlook.com
  3. // @name Uncheck Google Two Factor Authorization Trust This Device
  4. // @namespace ugssi
  5. // @description Disable google's automatic "Dont ask again on this computer" checkbox when entering Two Factor code
  6. // @include http://accounts.google.tld/*
  7. // @include https://accounts.google.tld/*
  8. // @version 1.0
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. var chkbox = document.getElementById('trustDevice');
  13. chkbox.removeAttribute('checked');