/*
* @title gtmDebuggerMinimize
* @description my bookmarklet
* @include http://*
* @license MIT License
* @require
*/
(function(){
const iframes = document.getElementsByTagName("iframe");
for(let i = 0; i<iframes.length; i++){
let iframeTitle = iframes[i].contentWindow.document.title;
console.log();
if(iframeTitle.indexOf("GTM Debug Console")>=0){
iframes[i].contentWindow._minimize();
break;
}
}
})();