Log inRegister

Tampermonkey scripts

11 December 2025 - 11:39 | Version 1 |

This one is not yet active - needs revision first:

// ==UserScript==
// @name Telenet modern webmail tweaks
// @namespace http://tampermonkey.net/
// @version 2025-12-11
// @description Show more items in the modern Telenet webmail
// @author Stijn Bousard | boossy
// @match https://mail.telenet.be/modern
// @icon https://mail.telenet.be/img/logo/favicon.ico
// @grant none
// ==/UserScript==
function addGlobalStyle(css) {
 var head, style;
 head = document.getElementsByTagName('head')[0];
 if (!head) { return; }
 style = document.createElement('style');
 style.type = 'text/css';
 style.innerHTML = css;
 head.appendChild(style);
}
addGlobalStyle('.zimbra-client_mail-list-item_message.zimbra-client_mail-list-item_wide.zimbra-client_mail-list-item_slim { padding-bottom: 0px; !important; } ');
addGlobalStyle('.zimbra-client_mail-list-item_message.zimbra-client_mail-list-item_wide.zimbra-client_mail-list-item_slim { padding-top: 0px; !important; } ');
addGlobalStyle('.zimbra-client_mail-list-item_message { border-bottom: 0px solid var(--border-color); !important; } ');
addGlobalStyle('.zimbra-client_folder-list_item { height: 24px; !important; } ');
 
This site is powered by FoswikiCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding Foswiki? Send feedback