I just downloaded it now and I'm having an issue with the fonts as well. It's blurry and annoying. I downloaded an add-on Tested.com recommended but it hasn't helped at all.GrayFoxPL said:I just downloaded this and holy shit! Wtf happened to the fonts? They look so fugly with gameboy res. Must be some kind of conflict with my hardware.went back to 3.6.
Uhhhhhh whatTrike said:I just got the FireFox 4.0 update cause it kept on nagging me about it. Why did I get GoogleChrome? I do not want GoogleChrome when I click FireFox.
lightless_shado said:Is there a way to make it so that if you type a website name into the adress bar you automatically get linked there? Like if I type in "neogaf" without the www. or the .com and I automatically get linked to the site.
I remember I could do that in a previous version, and I accidentally installed a different search program or something like that. Either way I can't go to a site without having to type the full adress anymore. I figured this would be the best thread to ask about this.
Milpool said:Go into about:config and change they keyword.URL value to "http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q="
See if that works.
Also make sure keyword.enabled is set to "true"
hateradio said:Otherwise you can go to Options > Advanced > deselect "Use hardware acceleration when available".
The tab glows blue when you get new mail.Gigglepoo said:I have gmail pinned as an app tab. I really like how that works, but if there was some visual difference when new email arrived, that would be even better. This seems like a pretty common problem so I figure there must be some solution out there.
Why are you even using that to open a link in a new tab? Middle click on the link or ctrl + left click on a link to open it in a new tab.Trike said:Update is too much like Google Chrome for my tastes, I would like to see if anyone knows of a theme on Firefox to make it at least look like the old one. But I found one through googling instead of using their add-on search engine. Still annoyed that the switched the placement of "new tab" and "new window" after I got used to it, but I'll deal with it.
CrookedRain said:The tab glows blue when you get new mail.
Yes, it does. Any change on a pinned tab will make it glow blue, new mail in gmail inboxes included.Gigglepoo said:No it doesn't...
MrBig said:Yes, it does. Any change on a pinned tab will make it glow blue, new mail in gmail inboxes included.
It's a pretty subtle blue.Gigglepoo said:Huh, I guess I'm doing something wrong then.
BY2K said:Wait, Firefox 5 is already on the way? Didn't they just released 4 out of beta?
Why doesn't everyone just click the tab with the middle mouse button to close it? Don't have to worry about resizing and you don't have to pixel-hunt for a tiny X to click.PjotrStroganov said:Firefox 5 tweak for tab close and auto resize.
http://www.favbrowser.com/firefox-5-tweaks-tab-close-and-auto-resize/
Finally.
sykoex said:Why doesn't everyone just click the tab with the middle mouse button to close it? Don't have to worry about resizing and you don't have to pixel-hunt for a tiny X to click.
Clear your cache, run ccleaner, and don't leave it running for so long. Any program you leave open will build up unnecessary files and have unnecessary memory committed to it.SolarPowered said:Has anyone else been having problems with opening their firefox?
Everything has been running smoothly with my firefox until a couple of days ago when it accidentally got shut down. Now it won't reload the pages that were open before and the whole browser just hangs on a blank tab. I can't even open another tab or the thing will slow down to a crawl.
It also starts with 500K+ of system memory for no reason...
kharma45 said:They're wanting to speed up version numbers to be more like Chrome.
http://www.mozilla.com/en-US/firefox/channel/BY2K said:When is the beta coming out?
You can try these after you get Greasemonkey.Jzero15 said:The only website that works better on Aurora than Chrome is NeoGAF so far.
BTW do they have the GAF extensions on FF?
hateradio said:http://www.mozilla.com/en-US/firefox/channel/
You can always sign up for their newsletter.
You can try these after you get Greasemonkey.
YouTube Me Again! (For neoGAF)
And several other userscripts (I think it lists every one I've made).
http://userscripts.org/tags/neogaf
Please make it so you can highlight multiple users with multiple colorsZombie James said:
Schrade said:Please make it so you can highlight multiple users with multiple colors
I like to have mods highlighted reddish and my own be green.
hateradio said:You need to add the "neogaf" tag. Tag settings should be on the right side.
This is probably one of the cheapest ways to do this. I honestly don't know much about jQuery, I tend to stay away from libs. Otherwise I would have easily used a decent regex. However, arrays and for statements did the trick.Schrade said:Please make it so you can highlight multiple users with multiple colors
I like to have mods highlighted reddish and my own be green.
// ==UserScript==
// @name NeoGAF User And Mod Highlighter (Mod)
// @author Zombie James, Hateradio
// @version 2.0
// @namespace com.zombie.net
// @description Highlight user posts, quotes, and threads.
// @include http://www.neogaf.com/forum/*
// @include http://neogaf.com/forum*
//
// ==/UserScript==
// These two variables must be set!
//////////////////////////////////
var username = ''; // <-- Your GAF username goes between the quotes.
var usernames = [username,'bishoptl','Amir0x','Blackace','charlequin','duckroll','Hyoushi','iapetus','john tv','Kagari','m0dus','Nirolak','Opiate','Shouta','Stumpokapow','Teknopathetic','White Man','Y2Kev','EviLore','gaadmin','Hitokage','maharg'];
var colors = ['#d6e9cc','pink']; // <-- These are the highlight colors. First one is for you. Second is for anyone else/mods/admins.
// Options
//////////////////////////////////
var highlight_avatar_area = true;
var highlight_post_area = true;
var highlight_threads = true;
var highlight_quotes = true;
//////////////////////////////////
// Add jQuery
///////////////////////////////////////////////
var GM_JQ = document.createElement('script');
GM_JQ.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);
if (window.opera) unsafeWindow=window;
// Check if jQuery's loaded
function GM_wait()
{
if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
else { $ = unsafeWindow.jQuery; if(username.length > 0) execJQuery(); }
}
GM_wait();
// Execute
////////////////////////////////////////////////
function execJQuery()
{
// thanks to yeef @ neogaf
$.expr[":"].econtains = function(obj, index, meta, stack) {
return (obj.textContent || obj.innerText || $(obj).text() || "").toLowerCase() == meta[3].toLowerCase();
}
for(var i in usernames){
color = username == usernames[i] ? colors[0] : colors[1];
username = usernames[i];
var path = window.location.pathname;
if((path.search("showpost") > 0) || (path.search("showthread") > 0))
{
var user = $(".bigusername:contains('" + username + "')");
if(highlight_avatar_area && highlight_post_area)
user.css('color', 'black').closest('tr').children().css('background-color', '' + color + '');
else
{
if(highlight_avatar_area)
user.css('color', 'black').closest('td').css('background-color', '' + color + '');
if(highlight_post_area)
user.css('color', 'black').closest('td').siblings().css('background-color', '' + color + '');
}
if(highlight_quotes)
{
$('.post').find('div:contains("' + username + '")').each(function() {
$(this).find('td.quotearea').css('background-color', '' + color + '');
});
}
}
else
{
if(highlight_threads)
{
$('.alt2').find('a:contains("' + username + '")').each(function() {
$(this).closest('tr').children().css('background-color', '' + color + '');
});
}
}
}
}
Thanks! I had your old mod and was using that but was hoping for an updated onehateradio said:This is probably one of the cheapest ways to do this. I honestly don't know much about jQuery, I tend to stay away from libs. Otherwise I would have easily used a decent regex. However, arrays and for statements did the trick.
CougRon said:I use an extension called "Tab Badge", it will add a big red numeral to the tab when gmail says it has unread messages.
GavinGT said:Firefox 4 is a damn mess when it comes to my browsing habits. I can't customize the toolbar the way I want, as they've gotten rid of the option to add certain buttons ("New Tab", "Stop", "Reload"). I managed to get the Reload button back on the left where I want it, but it refuses to show the Reload and Stop buttons simultaneously, as the Reload button becomes the Stop buton while a page is loading. This is infuriating for me, as I don't want to wait until a page is loaded before being able to hit Reload. I also like to have a "New Tab" button on my navigation bar, but they got rid of that for whatever reason. Also, I don't like how I have to right-click the Back button in order to skip back multiple pages. Plus, there's no reason the tab bar should be above the address bar by default.
You can also hold down LMB for a second on the Back/Forward button.GavinGT said:Also, I don't like how I have to right-click the Back button in order to skip back multiple pages.
Erm that looks like the exact same font to me... just different font smoothing.JaseC said:Seems FF 4.0 is playing silly-buggers with sans-serif fonts. I'm getting Arial/Arial Narrow (?) instead of Verdana on GAF and some other sans-serif font instead of Arial on Wikipedia.
Here's a side-by-side comparison of FF and IE on GAF:
(Both are thumbnailed; click for full size.)
What's going on?
JaseC said:Seems FF 4.0 is playing silly-buggers with sans-serif fonts. I'm getting Arial/Arial Narrow (?) instead of Verdana on GAF and some other sans-serif font instead of Arial on Wikipedia.
Here's a side-by-side comparison of FF and IE on GAF:
And here's another comparison of the two browsers on Wikipedia:
(Both are thumbnailed; click for full size.)
What's going on?
AtomicShroom said:How about just pressing Esc. to stop the loading like everyone else?
How about just pressing F5 to reload like everyone else?