GMX standalone view

Set gmx option to open email in standalone window

Mint 2020.01.17.. Lásd a legutóbbi verzió

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         GMX standalone view
// @namespace    https://github.com/Procyon-b
// @version      0.3
// @description  Set gmx option to open email in standalone window
// @author       Achernar
// @match        https://3c.gmx.net/mail/client/home*
// @match        https://3c.gmx.net/mail/client/folder*
// @match        https://3c.gmx.net/mail/client/search*
// @match        https://3c-bap.gmx.net/mail/client/home*
// @match        https://3c-bap.gmx.net/mail/client/folder*
// @match        https://3c-bap.gmx.net/mail/client/search*
// @match        https://3c-bs.gmx.com/mail/client/home*
// @match        https://3c-bs.gmx.com/mail/client/folder*
// @match        https://3c-bs.gmx.com/mail/client/search*
// @match        https://3c-bs.gmx.fr/mail/client/home*
// @match        https://3c-bs.gmx.fr/mail/client/folder*
// @match        https://3c-bs.gmx.fr/mail/client/search*
// @run-at document-body
// @grant GM_setValue
// @grant GM_getValue
// ==/UserScript==

(function() {
"use strict";

const maxRetry=40;
var e, r, retry=maxRetry;

function toggle(ev) {
  if (!e) return;
  var v=(typeof ev == 'object')? !phx.vars.enableStandaloneView : ev;
  e.checked=v;
  phx.vars.enableStandaloneView=v;
  GM_setValue('option', v);
}


function addChk() {
  if (!(r=document.querySelector('.widget.menubar .button-container.left'))) {
    if (retry--) {
      setTimeout(addChk,10);
      }
    return;
    }
  retry=maxRetry;
  e=document.createElement('input');
  e.type='checkbox';
  e.id='standaloneView';
  e.title='Standalone view';
  e.style='margin-top: 6px;';
  r.appendChild(e);
  e.onclick=toggle;
  toggle(GM_getValue('option',true));
}

addChk();

const obs = new MutationObserver(function(mutL){
  for (let mut of mutL) {
    for (let el of mut.addedNodes) {
      if (el.classList && el.classList.contains('menubar')) {
        r=document.querySelector('.widget.menubar .button-container.left');
        addChk();
        return;
        }
      }
    }
  });

var t=document.querySelector('#panel-mail-table .panel-body form');
if (t) obs.observe(t, {subtree: false, childList: true, attributes: false} );


})();