Greasy Fork is available in English.

Uncheck Google Two Factor Authorization Trust This Device

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

目前為 2015-10-14 提交的版本,檢視 最新版本

// ==UserScript==
// @author      Christopher Engel - [email protected]
// @name        Uncheck Google Two Factor Authorization Trust This Device 
// @namespace   ugssi
// @description Disable google's automatic "Dont ask again on this computer" checkbox when entering Two Factor code
// @include     http://accounts.google.tld/*
// @include     https://accounts.google.tld/*
// @version     1.0
// @grant       none
// ==/UserScript==

var chkbox = document.getElementById('trustDevice');
chkbox.removeAttribute('checked');