Skip to content

Instantly share code, notes, and snippets.

@sendos
Created November 6, 2016 17:34
Show Gist options
  • Save sendos/3478b6e26edcb8a645b857698d1877f9 to your computer and use it in GitHub Desktop.
Save sendos/3478b6e26edcb8a645b857698d1877f9 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Yahoo Mail Improvements
// @namespace YahooMail
// @description Improve experience of using Yahoo Mail
// @include https://us-mg5.mail.yahoo.com/neo/*
// @version 1
// @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);
}
(function()
{
addGlobalStyle('.tc .list-view-item-date-label { display: none; }');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment