Gmail turn warning off

Gmail turn off unintended external reply warning

// ==UserScript==
// @name           Gmail turn warning off
// @description    Gmail turn off unintended external reply warning
// @copyright      Brahim Hamdouni (c) 2017
// @author         Brahim Hamdouni (@hamdouni)
// @License        http://creativecommons.org/licenses/by-nc-sa/3.0/
// @version 0.1
// @include https://mail.google.com/mail/*
// @run-at  document-end
// @namespace https://gf.qytechs.cn/users/136286
// ==/UserScript==

function startme() {
    var e = document.getElementsByName("untrusted_recipient");
    if(e.length > 0) {
        e[0].parentNode.style.display = "none";
    }
    t = setTimeout(function(){startme();}, 500);
}

(function() {
    'use strict';
    startme();
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址