Rated 4 out of 5 stars

Still amazing -- however MiniWebView Sidebar leads to constant high Thunderbird CPU load in my case (Gmail in the Thunderbird Sidebar). Maybe this can be investigated by the developer?

--
Edit: thanks for the quick reply -- actually I get the high CPU load also when I disable that script and even when MiniWebView Sidebar does not display anything (is empty).

If I disable MiniWebView Sidebar, then I get like 0,5% CPU load for Thunderbird. If MiniWebView Sidebar is enabled (no matter if empty or with website inside), I get 15% CPU load (Intel i5-2500K CPU).

Hi David

I wonder if it is a script on the web page, perhaps, that is loading the CPU? What happens if you disable that script you added for hiding the left hand bar? What happens to CPU usage when you click a link on the page to take you away from Gmail? Just some ideas, I've not messed with MiniWebView since I made it, I'm afraid, it works well enough for me that's the trouble ;).

Cheers

Rated 5 out of 5 stars

Still enthusiastic about Miniwebview-Sidebar (using it for a viewing a copy of Gmail).

Question: is it possible to restrict the Sidebar to a minimum width? Currently, it gets compressed when I open the Thunderbird folder tree sidebar.

Rated 5 out of 5 stars

Simply awesome! I have put gmail in the Thunderbird Sidebar which puts all email stuff in one place:
http://666kb.com/i/cs5go58pxogit7ssz.png

Thanks for the great work!

PS: a code snippet for scriptish that autohides the Gmail left sidebar:

@-moz-document domain('mail.google.com') {
body>div>div.nH>div.nH>div.nH>div.no>:first-child {
transform: translateX(-195px);
transition: transform 250ms ease 1111ms;
}
body>div>div.nH>div.nH>div.nH>div.no>:first-child+*>:first-child {
margin-left: -210px;
transition: margin-left 250ms ease 1222ms;
}
body>div>div.nH>div.nH>div.nH>div.no>:first-child:active,
body>div>div.nH>div.nH>div.nH>div.no>:first-child:hover,
body>div>div.nH>div.nH>div.nH>div.no>:first-child:focus,
body>div>div.nH>div.nH>div.nH>div.no>:first-child:target {
transform: translateX(0px);
transition-delay: 666ms;
}
body>div>div.nH>div.nH>div.nH>div.no>:first-child:active+*>:first-child,
body>div>div.nH>div.nH>div.nH>div.no>:first-child:hover+*>:first-child,
body>div>div.nH>div.nH>div.nH>div.no>:first-child:focus+*>:first-child,
body>div>div.nH>div.nH>div.nH>div.no>:first-child:target+*>:first-child {
margin-left: 0px;
transition-delay: 555ms;
}
}

based on:
https://userstyles.org/styles/36980/gmail-autohide-sidebar