Is there a tool or extension available to allow me to throttle the number of Ajax requests a tab in firefox might invoke? When having 50+ tabs open, xmlhttprequests start consuming more CPU and network bandwidth (especially when I'm tethered to a 3G data connection) that I don't want to spend.

But I use firefox as a work-in-progress slate - I'm not open to reducing my tab usage.

link|improve this question
feedback

1 Answer

To me you have two options:

1) Try Tab Mix Plus, Tab Utilities, or any other addon than can "lock" a tab and see if it works for you. I'm not sure about background requests, but its worth a try.

2) All requests that aren't initiated by you are initiated by timers. If you have greasemonkey, here's some code that can kill all of the timers on the page:

GM_registerMenuCommand('TimerKill - Kill all timers',function() { main(); });

function main() {
   for(var i=0; i<500; i++) { window.clearTimeout(i); }
}

Once again its worth a try.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.