I have one tab that I would like to be able to run in background unthrottled. Ideally, I would disable background throttling for the specific URL I have open in that tab. Is this possible somehow?
I have one tab that I would like to be able to run in background unthrottled. Ideally, I would disable background throttling for the specific URL I have open in that tab. Is this possible somehow?
8 Comments
0xCAFE@feddit.de · 6 pts · 2y
I don't know if it does everything you need, but pinning a tab prevents it from unloading AFAIK.
Sibbo@sopuli.xyz · 2 pts · 2y
Thanks, I'll try that!
I believe though my problem is more throttling than complete unloading. But I am not sure how the browser works, so not sure about that.
Potajito@feddit.ch · 3 pts · 2y
Shouldn't pinning it work for that?
Sibbo@sopuli.xyz · 1 pts · 2y
I'll try, thanks!
Atemu@lemmy.ml · 3 pts · 2y
WDYM by "throttling"?
Sibbo@sopuli.xyz · 7 pts · 2y
Limiting CPU-time that JavaScript, WASM, and others get
thesmokingman@programming.dev · 3 pts · 2y
My go-to is pulling the tab into its own window. If I end up having too many windows I usually find I’m doing something wrong or trying to play too many idles simultaneously.
Sibbo@sopuli.xyz · 2 pts · 2y
Thanks! I was trying to avoid that, but I'll keep it in mind if the other ideas do not work.