View Single Post
Old 7 Mar 2017, 10:10 AM   #312
joe_devore
Essential Contributor
 
Join Date: Dec 2003
Location: Dover, NH, USA
Posts: 315
Quote:
Originally Posted by Terry View Post
There is a Firefox work round so that you can see your folder count, I did post the details on here a long time ago....
ooh do tell lol can u find them again?

I use GreaseMonkey a Firefox ext. to run the following script given to me
Code:
// ==UserScript==
// @name        FastMail Tweaks
// @namespace   https://www.fastmail.com/tweaks
// @version     1
// @grant       none
// @match https://*.fastmail.com/html/*
// ==/UserScript==


// Notepad screen:  move "Create new note" button to top, followed by "Sort by" 
// -- Updated by Bill n5bb (2011.05.02)
// -- Updated Grease Monkey ready by "robmueller" (2014.05.10)
if ($('notepad'))
{
   ($$('div.sortBy')[0]).inject($$('.collapseContainer')[0],'top');
   ($$('li.listButton')[0]).inject($$('.collapseContainer')[0],'top');
}
btw I tried editing the @match https://*.fastmail.com/html/* so it would work with the NewUI but it didn't and really didn't matter any ways since those features were at the top anyhow...


if there is an additional script I could run with GreaseMonkey, I guess that would be ok for a work around... but FastMail really should take care of this themselves so its done right..
joe_devore is offline   Reply With Quote