- cross-posted to:
- technology@beehaw.org
- cross-posted to:
- technology@beehaw.org
They can have my tabs over my dead body
(╯°□°)╯︵ ┻━┻
Microsoft hit squad is en route to your location.
Joke’s on them, I only use Arch (btw)
Microsoft is the fucking worst with their trick questions and constant nagging.
They do this because they want you to use Edge which steals search results from other search engines.
Microsoft Edge is actually good, so I sure hope the team building it isn’t about to resort to more tricks to get Chrome users to use it.
Edge is good compared to IE which was a dumpster fire, and arguably about as bad as Chrome. Both are privacy nightmares and desire nothing more than to harvest your data for ad companies. I trust Google a hair more than I do Microsoft. I don’t use Chrome. That should tell you something.
Nonsense, Edge is a top tier Chromium browser. Vivaldi is another good Chromium option although I no longer use it. Chrome while a decent browser however is irrelevant in my eyes on any W10/W11 since Edge is part of OS.
Every day I use both Edge (only at work) and Firefox (home and work), both have pros and cons. I tried to switch from Firefox to Vivaldi less than 1 year ago, but there are some thing in Chromium based browsers that I did not like when compared to Firefox. Bookmark management was a big one (no tags).
I disagree. Chrome is a simple well designed browser that happens to be run by a company that tries to push things we don’t like, such as FLoC.
Edge is full of bloatware and dark patterns. You’re probably thinking of the early versions of Edge when none of that crap had been added yet… but trust me it’s a very different browser now. In fact it’s worse than IE ever was.
Meh. My work gives me the choice of Chrome and Edge. I decided to try edge to get access to bing chat last year, and I’ve found it to be a pleasant experience compared to chrome. It’s got some neat features, and the built in copilot AI can be handy. I haven’t missed chrome (or Google for that matter) in the year I’ve been using edge. It’s fine. Still use Firefox on my personal laptop and phone though.
My chief complaint is performance. Some of the saas we use has some complex renders and edge really struggles with it. Works perfect in Firefox though ¯_(ツ)_/¯
You can just use a firefox plugin for Bing chat FYI
worse than IE ever was
This argument can be made for spying/telemetry, but I don’t think anything will compare to how bad the IE user experience was for years. It ran so slowly, and took forever to get features like tabbed internet browsing. It started to get more functional towards the end once it started losing market share, but that was after years of it being complete garbage while having absolute market dominance.
Edge re-installing itself after I’ve manually taken ownership of its files and purged them from the system 6 fucking times is what’s going to finally drive me to abandon windows and go full linux.
I just haven’t had the time or energy to rebuild my software stack on a still pretty new to me OS. (emby, the Arrs, Ombi, nginx, and more)
I setup a debian machine a while ago and have been slowly trying to get used to it while migrating a few things, but It’s hard when windows is so engrained in most of what I’ve done on pc.
Were you on a Windows Pro license and did you tried using group policy settings?
I keep hearing people being frustrated that low level solutions don’t work, but I’ve not heard of anyone having these issues who has used the official tools Microsoft provides for Windows sysadmins (and power users) to actually manage this sort of thing.
I get that logically, it shouldn’t matter whether you put a sign up telling Edge to fuck off when you’ve bulldozed it down six times, but Windows sees that it’s gone and your settings (by default with no group policy config) indicate it shouldn’t be gone, so it “helpfully” rebuilds it.
Power users are not their market for normal home licenses. Those are for the people who don’t know the difference between Edge and Chrome and need protection from making dumb mistakes like deleting Edge and ending up without any web browser. Unfortunately, those are the grand majority of computer users, and it makes good business sense to take advantage of “just helping” to provide a locked down ecosystem and push your software on power users who don’t know the management options available.
Windows doesn’t do a good job advertising these features, and has made them harder to find by getting rid of a lot of their old non-cloud sysadmin training courses, because it doesn’t help them make money. But by no means are these options non-existent.
They offer a Windows version for power users. It’s the Pro license, and it doesn’t cost significantly more if you’re buying a cheap “OEM” key.
If you want to make Windows work for you, look at the tools they have for on premises (non-cloud) Windows system administration in small companies.
KMS (key media server) is one way to manage Windows license keys for multiple machines in a domain. KMSpico emulates that setup on a single machine (no server needed), allowing safe spoofing of whatever level Windows license you want, using the same systems and technique meant for actual sysadmins. Last I knew, that was the safest way to spoof a license if you don’t have the ~$15 for one.
Group policy is one of a few ways to push consistent Windows configuration and settings to multiple machines in a domain. It is also an option for managing settings on individual Pro licensed Windows machines. Most of the time when you find weird registry key changes online to enable/disable Windows features, those are part of what Group Policy changes when you use it to disable a feature the proper way. Windows respects group policy options through updates, and releases update to group policy templates as needed. They don’t want to fuck with their big business clients that can actually hurt their bottom line, so they keep those working.
I do have a pro license (for RDP), but I’m not familiar with the group policy editor. Wasn’t aware it could disable Edge. I’ll have to explore that more. It’s rather absurd a user has to go to those lengths to keep data they’ve deleted, deleted.
Still gonna move to linux. Been a long time coming.
Out of curiosity, why Emby over Jellyfin?
Mostly because they got there first tbh.
I started with Plex and was immediately unhappy with their always online model, shitty support, and data harvesting practices. (which has gotten significantly worse over the last few years)
Moved to Emby as the only alternative I’d heard of at the time (7 years ago), and was immediately impressed with how much easier it was to use, it’s stability across all platforms I use, their friendly and helpful forums, and their stance on keeping your server your own (no telemetry or dependency on external servers). I pretty quickly purchased a lifetime premier license and it’s never failed me.
From there I learned of Jellyfin but by then had no reason to move. Beyond that, I’m just not really a fan of Jellyfins origins (ie forking emby because they didn’t like Embys licencing) and their development has regularly lagged behind the others largely because they lack funding to keep a team of devs AKAIK. (keep in mind thats an opinion from a distance, I don’t pay much attention to Jellyfin as I’m happy with Emby)
It’s more mature and feature rich. Just like Plex vs. Jellyfin.
I moved to Fedora (KDE Plasma) about a year ago. I had researched alternatives for all I needed.
I installed it on a new machine and kept an old windows machine running.
It took a month or so to get things how I liked.
I miss some things in Windows but found some real time saving features in linux, on the whole I am better off.
And I feel a whole lot safer.
Side question:
Know a good place I can learn linux user/group/permission management?
I don’t understand it well enough so I do a stupid amount of things as root…
A good start is using something like sudo rather than logging in as root.
sudo gives your command root permission when it runs. That way you can delete the password from the root account and it can’t be logged in with. sudo will ask for YOUR password and then check if you have permissions to elevate your command to root level.
In a simple setup, you can just use for anything you would normally do as root.
This can protect you from mistakes too, when running commands that you’ve mistyped. For example, if you want to do “rm -rf ./*” to delete all files in the current directory, but you forget the dot (period); if you’re at a root prompt, you just deleted your entire filesystem. If you’re not, then you get a permission error.
How do I manage what users can use sudo?
One issue is trying to create a user to run services under, but not knowing how to give it permission to access what it needs (while also not entirely sure what it should/shouldn’t have permissions for).
Or just generally managing file permissions. I understand using chmod in a very basic capacity with a few letter arguments like +r, but then you toss in numbers (chmod 777, wut?) and I get lost.
In addition to what other posters said, some distros allow you to add a user to the “sudo” group (as a secondary group assignment; don’t make it their primary) to allow them sudo access.
Edit your /ect/sudoers file using visudo
The
/etc/sudoers
file is what you’d need to edit, and you’d use thevisudo
command to edit it.chmod
is indeed used for file permissions, but you can also use SELinux or AppArmor for more access/role/action based permissions (aka Mandatory Access Controls) instead of just limiting yourself to file permissions (aka Discretionary Access Control). There’s also udev rules (for device/sysfs access) and PAM (Pluggable Authentication Modules). Then there’s cgroups and namespaces for process limits and sandboxing. Really depends on what you’re trying to achieve.But is there any reason why you’re looking into micromanaging service permissions? Most users, or even power users wouldn’t need to touch that stuff at all.
If it’s in a corporate environment, you’d already be running something like SELinux or similar and you’d apply a baseline security profile that meets various compliance specs. Very rarely would you have to mess with permissions of a service.
If this is for personal stuff, you’d just make use of multiple user accounts (if it’s a multi-user system), or just sandboxing (containers, flatpak etc) to run untrustworthy stuff like web browsers. None of this stuff would require you to touch chmod.
But is there any reason why you’re looking into micromanaging service permissions?
Because I don’t know any better, having very little base knowledge of linux.
The thought process here was that services like nginx should be running under a separate user from root and your main daily user account, only having access to the files it actually needs, but not really knowing how to achieve that. I know genuinely nothing about linux user management and feel a bit overwhelmed trying to figure out where to start :/ (especially comming from the all graphical UI experience of Windows)
Chmod is/was the only tool I’ve known about for managing permissions. I end up running stuff as root in my experimentations because I randomly run into permissions errors, but don’t know how to solve them, particularly without creating more problems for other processes.
I’m using Debian as a first Linux desktop experience; previously I’ve done some experimenting with rpis managed via ssh, mostly to run pihole, that’s about it. The rest has been windows where I was familiar.
Okay so that’s different.
nginx only runs the master process as root, but the actual worker processes already run under a low-privileged account called
http
. If you want to run the master process as well as non-root, you can follow the instructions here: https://wiki.archlinux.org/title/nginx#Running_unprivileged_using_systemdTo restrict access to files, you’d be editing the nginx config file, you can read on how to do that in the nginx documentation, or check ServerFault etc.
But the modern Linux world revolves around containers. There’s an official Docker image for nginx that you could use if you’d like, and that’d make it a much more secure - and portable option.
Also, I’d recommend checking the Arch Wiki first for anything Linux related - the wealth of knowledge and documentation there is unmatched, and is useful even if you’re not running Arch.
When Linux spoons me in bed and whispers in my ear that it loves me, that’s when I feel really safe.
Edge re-installing itself after I’ve manually taken ownership of its files and purged them from the system 6 fucking times is what’s going to finally drive me to abandon windows and go full linux.
This sort of thing is why I finally switched my gaming PC - I was spending a bunch of time fighting to get Windows to do what I wanted that I figured I might as well be doing all that work on Linux.
At least Linux doesn’t deliberately fight me. When I have to spend time getting Linux to do something it’s because developers haven’t gotten to it yet, not because corporate are enforcing their vision of how I’ll use my system.
I was spending a bunch of time fighting to get Windows to do what I wanted that I figured I might as well be doing all that work on Linux.
A damn good point.
I really got to get around to telling Microsoft to fornicate themselves with the wide end of a rake…
To play devil’s advocate, that’s because Edge is the system web view used for system components. Removing it means certain UI for system components won’t be able to be rendered. It’s the same reason why uninstalling Chrome from Android breaks a bunch of stuff. They should decouple the web view from the browser but here we are.
I don’t care. None of the stuff that breaks is even remotely important to me.
If I’ve made a point of removing a piece of software; reinstalling it, re-adding shortcuts in 3 different places, and changing my default back to edge with every system update (and now automatically harvesting all the data from every other installed browser) makes me want to personally lynch Satya Nadella. (Microsoft’s CEO)
Exactly. Those OS updates are most likely fixing / reinstalling Edge since it is either considered corrupted or to push newer version. Set different default browser, unpin it from taskbar and you are good to go.
All these “fixes” and “debloaters” in a long run most likely will cause problems.
Actually, Edge WebView2 is a separate system component pushed out via Windows Update (can also be bundled with individual apps), and is independent of Edge the browser.
So you can actually uninstall Edge the browser completely if you wanted to, and still keep using Webview.
Of course, it’s a different story that Microsoft like to sneak it back in as part of an update or something.
This is the best summary I could come up with:
I haven’t been able to replicate the behavior on other PCs, but a number of X users replied to my post about this saying they have experienced the same thing in the past.
Zach Edwards, a privacy and data supply chain researcher, freshly installed Windows and replied to my post on X to note he had found a new prompt during setup that reads:
Given the full-screen prompt that disappeared just before I experienced the issue, how Microsoft convinces people to turn this setting on will also be important.
Microsoft has a history of using the sort of tactics we’ve seen from bloatware and spyware developers to promote its web browser.
Those have ranged from Windows updates that have launched Edge and pinned it to the desktop and taskbar without permission to polls or prompts when you attempt to download Chrome.
Microsoft Edge is actually good, so I sure hope the team building it isn’t about to resort to more tricks to get Chrome users to use it.
The original article contains 772 words, the summary contains 167 words. Saved 78%. I’m a bot and I’m open source!
guess what, i’m using neither. checkmate.
/lh
Overreaching pack of degenerate cunts they are
Imagine using Chrome in 2024.
I have found a lot of websites over the last few months acting up if I’m using Firefox.
I have chrome for work and if I switch they work flawlessly. It’s small things like menus not expanding or elements not loading.
There’s a push on unifying browsers.
I’ve been Firefox and duckduckgo for years and it’s getting a bit annoying. Obviously the trade off is worth it I do not want the big tech products but finding good alternatives is getting hard.
DDG has gone downhill in recent years.
DDG has gone downhill in recent years.
Not as much as Google though, so I’ve been feeling like it’s been getting better and better, but it’s just a comparative feeling.
To me it’s worrying because it is where Google was when I jumped ship for DDG.
I am getting tailored results that I do not want. Everything I search even with location off gives me local to very local responses.
If I open a link and then go back to the results page all the results have changed order.
Sometimes those websites lied that they don’t support Firefox. For example, google meet didn’t support background blur on Firefox? Change the user agent to chrome and it suddenly worked!
As for simple stuff such as menu or elements not loading, it’s usually the dev copy pasted outdated code/css that uses WebKit/Bink-specific prefix even though Firefox already support them if they removed the prefix. Nothing we can do about that except pestering the dev to fix it or overriding it yourself using some css overrides extension.
DDG has gone downhill in recent years.
I haven’t noticed this at all.
I’ve been a frequent DDG g! bang user over the years, but now almost never have to go it. Granted I use kagi for most searches now, but my phone still defaults to DDG, and I’ve noticed that it works just fine.
Google and therefore kagi are still better for stackoverflow indexing I believe, at least that’s how I remember it
What is DDG g! Bang?
Yeah it is really odd I can’t understand why it does it because the initial reason I moved to DDG was because of their big marketing push on not putting results or users into bubbles.
Bangs is a cool DDG feature that redirects your query to another search engine in this case !g is Google
Does it filter out the shite?
There is no modification, it just redirects you to the site
Does it prevent Google from getting your info or something so or what is the benefit in this over using Google?
Kagi also does this, not that I’ve ever needed it
I have just added all the other engines I use in browser itself. Kind of even forgot about bangs.
You have to complain if your work does chrome specific stuff.
I use brave search, and it works great!
Saying that you use Brave seems to result in instant downvotes in lemmy. Kinda makes sense given the fediverse demographic simply don’t align with Brave’s CEO.
Also, mentioning Kagi often results in replies accusing ads and shilling because Kagi is a paid search engine (with free trial), but it worth checking nonetheless. They reached 20k paying users recently, not bad for a new paid search engine. The fact they’re able to convince 20,000 people to pay for search engine means the search result is pretty good.
Brave may be persona non Grata around here, but props to them for actually crawling the web. Just about every other private search engine uses APIs from Google/Bing or scrapes/proxies results from other search engines.
Yeah exactly, and its the only private search engine that actually gives me good results for tech troubleshooting, although if another private browser gets equivalent results I’m jumping ship immediately
Everyone says “problems with websites in Firefox!”
Nobody has examples
I just gave you an example of menus not expanding.
I’m not dogging Firefox I’m saying there is a consorted effort made to reduce it’s usefulness.
Okay where
That’s not proof
And proof isn’t an example, I’m not giving you my browsing history for sites of businesses local to me.
I just gave you an example of menus not expanding.
I haven’t come across a menu that didn’t expand in Firefox. Which website(s) have this issue in Firefox?
It was a local regulatory site that didn’t work on mobile, I did the desktop toggle and it worked.
I use Firefox on Linux and FreeBSD for my daily driver.
I was not able to book flights on Thai airways website 6 months ago until I loaded it in chrome/chromium instead.
It’s really really rare imo but that’s one example in recent history.
That sounds more like an issue with them using some proprietary browser bullshit than a problem with Firefox.
Very possible and even probable that they’re using some chrome specific behaviour. Just like back in late 90s early noughts when so many websites were IE specific making is impossible to use without a windows installation. The effect is though that unfortunately Firefox isn’t usable everywhere. Sometimes you need chrome for some specific websites. This is especially true for some self hosted “enterprise” web apps, I need chrome for one of those too.
But what, practically, is the difference? If more and more websites use shit that only works in Chrome or Chromium based browsers, the effect is the same. The web doesn’t work as well for Firefox users.
100% this. People loose the wood for the trees with these kinds of things. If something doesn’t work in one browser but does in another then 99% of people are not technical enough to understand or care why not. They just know it doesn’t work. That makes it a problem for Firefox. Whether it’s by their own making or not.
One is a browser following web standards and the other is a shitty company adding non-standards based development features intended to lock users into there browsers.
It was shitty when Microsoft did the non-standard features to lock in with Internet Exporer and it is shitty that Chrome does it now.
It’s shitty for sure, and I definitely think Chrome needs to die, or at least have better competition. Sadly, not enough users are using non-chromium browsers, that they don’t see a problem with using chrome only features. It sucks, and it’s going to lead (is leading) to the further enshitification of the web. I’m doing my part by using Firefox, and any web application I develop is guaranteed to work in Firefox.
Can you prove that right now? I can’t test that without a link
Oh, and I can’t seem to get tiktok videos to play on Firefox on Android? Not a major issue, but my sister keeps sending them to me in particular for some reason, so…
Yup I’ve noticed that too. I don’t have tiktok personally but I get links from friends and sometimes I have to open them in the duckduckgo browser (chromium based)
I’ve always had TikTok blocked so I maybe o idea about that
Also a privacy browser not allowing the least private thing ever? Colour me shocked
I mean, yeah. I’m none too bothered by that one, but it’s still an example.
Not a very big website, but the service my therapist uses for teletherapy doesn’t support anything outside of chromium.
I don’t want you to post personal stuff but that’s still just “it doesn’t work” with no proof
Well, it’s a specific example, even if I didn’t give any way to test it. Better than just saying “some websites don’t work” since I’m actually indicating the particular one that doesn’t.
I guess your two options are to trust that I’m acting in good faith when I say it or to assume I might not be and disregard the example. Either way doesn’t affect me much; I’ve already submitted tickets to the service asking for Firefox support, so with any luck it won’t even be an issue for too long.
After a ton of “Firefox sucks because a website doesn’t work but I won’t tell you which one”
I don’t care to think anyone saying they is saying it in good faith
They’re saying the websites suck, obviously it’s not Firefox fault if the webdev behind the site is a dumbass/actively works against Firefox.
I mean I did tell you which one. I just didn’t tell you how to find it.
No one said Firefox sucks
try switching your user agent. it’ll likely work fine.
red medical will act up if you don’t use a chromium browser.
I can think of 2 websites that didn’t work right over the past 10 Yeats. Both were credit card payment sites and just had weird issues like couldn’t hit the submit button. I figured it out and just used edge for them. I never found any site that I use often that has issues yet.
“I can think of”
no proof
No personal stuff obviously but nobody actually has proof
Samsung bill pay which is a tdbank site and joss and main furniture credit payment site… didn’t think I had to list them to be taken seriously. Plus I am for Firefox, it’s all I have used for 15 years now.
I couldn’t submit a support ticket for id.me (the IRS’ stupid commercial partner for Identity verification) when using Firefox, the submit button literally did not work. Worked fine when switching to edge (blegh).
I can’t test that but that’s the closest thing to proof so far!
I never had a problem verifying on Firefox a few years back so maybe it’s a more recent bug?
Wow, that random news article I hit 16 days ago where the page kept flickering and reloading, but didn’t do that when I copied the URL into Brave… I really should’ve recorded that domain so I could defend myself against some stranger online!
Sarcasm aside, I don’t think it’s generally the major websites that you bump into this with, however, there are many edge cases that occur for plenty of folks, whether they’re in college and have to use that “secure browser” extension that only supports Chrome, or the fact that some websites, especially in business, that simply refuse to support browser and will prevent access otherwise.
I’m a Firefox user, so this isn’t to say that Chromium is the way by any means, but hopefully to shine a little light on the fact that we’re all on different parts of the web with different experiences, questioning their experiences so that you can hopefully find an extension or something to pin the blame them does not absolve them of their experience, just a show of elitism.
Firefox HAS gotten much better, but unfortunately, Capitalism’s gonna Capitalism
Oh noooo a random shit news site doesn’t load good cuz they don’t do web design good
Still no examples
why are you being so abrasive?
Of course web sites not working on firefox is an error on the web sites part, was that even in question?
Because I’ve seen this over and over again and it’s always the same. Nobody has replied with a single URL, just vague anecdotes.
The search in the Walmart site has only been working on and off (mostly off) in Firefox, but consistently in Chrome. There’s also some webpages for my university that only work in Chrome
Edit: looks like the Walmart search is working now though for me. The only reason I even have duckduckgo browser is because walmart.com was giving me issues on Firefox
Example: The meeting webservice my bank uses is for whatever reason blocked for Firefox. Not sure if they just User-Agent check but they consciously block out Firefox users. I alerted my bank person about that but I doubt that’s going to be any different next time I have a meeting with them.
Are you sure that’s not an ad/tracker-blocking issue?
I’ve seen this on twitch, for example. Trying to log in with trackers blocked will throw up a dialog saying “your browser is not supported,” but if you allow tracking, it works fine. And once logged in, you can block trackers again and the site continues to work normally.
Nope they explicitly state in their support forums that they do not support Firefox and the Error Message you get recommends using Edge or Chrome. This is not an Ad-Block problem
I remember whipping out Vivaldi (which is Chrome-based) for booking a ticket on the Interrail website: https://www.interrail.eu/en
I haven’t fiddled much with weaker privacy/ad-blocking settings though, because I didn’t have the patience for that.
It happens rarely to me, and when it does 99/100 its the adblocker blocking something it shouldnt.
I was about to say this. I never find any websites that doesnt work with Firefox so I’m genuinely curious.
I bet it’s their ad blocker, or they have set their Firefox settings to the privacy level that says “this will break some web sites”.
Create any website with an element that is fixed on the bottom of the page and try to move the page in the mobile Firefox then.
Firefox + uBlock Origin and I have no issues with any websites.
Which ones are you having issues with and what is happening?
their workplace is probably developing whatever website they use for chrome exclusively, mine does that too and it sucks.
Like which sites specifically? I have yet to see one.
Huh, never heard of this before. Thank you for mentioning it.
Honestly, I’ve tried switching but can’t find a browser that works as well. I found Kiwi Browser on Android which is still chromium based but at least it’s something, but still need to use Chrome from time to time as websites won’t work on Kiwi.
Firefox just doesn’t perform as well comparatively, lacks features and then as you go down the list of alternatives it gets worse and worse.
So not from lack of trying, but at least for me it is the best browser particularly if you can install enough extensions to remove a lot of garbage.
I’m using Firefox on android and Linux and it’s plenty fine. Much better than chrome.
Vivaldi works, chromium too, firefox works really well. Both are multi platform
Not to sound snarky, but what are you missing from Firefox that chrome does?
For some reason, my Firefox with ublock removes all of the mobile ads from pages I visit. I miss finding it about all of the hot singles in my area.
Also curious about this
They won’t answer, because they can’t answer.
For me, I’ve noticed a few websites that complain that firefox “is an out of date browser, you should use something more modern”. My bank’s website does that, but still works fine as far as I’ve been able to tell.
I have a couple of websites that I go to that do not like working in Firefox but work just fine in Chromium browsers.
The worst offender is Microsoft admin 365. It will open, and it will work, but if you edit a user and save your edits you can’t click on the back button inside of the window that has popped up for editing and instead you have to close the entire section and reopen it to go back to the main screen.
Aside from that, for netdocs you have to open the local host port of your netdocs app in firefox (https://localhost:(port number)) and approve to bypass the security restrictions in order for netdocs to work.
There are a handful of another apps with similar issues and most of them are from software vendors that I have to use for work.
There’s one that I can’t mention because it would dox me that if you don’t use it in Chrome it simply does not work because the JavaScript that they use for generating the app checks to see if you are in a Chrome browser and straight up fails if the user agent does not return Chrome.
I can work around that for myself but I can’t work around that for all 17,000 of our employees, and since the entire business runs on this application then we are locked in.
On PC, Group tabs for me. I find it extremely useful for efficiency. There’s nothing equivalent on Firefox even with extensions.
I could just give up on them admittedly but once you get used to something it’s hard to change and I fucking hate having too many tabs open.
On Android, the performance was just worse than chromium based browsers. Not sure if it was something wrong with my settings, but I’m talking like at least 1-2 second lag differences in loading a basic Web page. Makes it unusable for me.
Have you tried Simple Tab Groups? It adds a drop-down menu that allows you to create separate environments for different uses. This was one of those things that I also couldn’t live without, and somebody turned me onto this extension. It’s even Firefox recommended.
Yeah it doesn’t do what I want unfortunately. I tried a few extensions but they couldn’t replicate it well enough.
Thanks though!
They talk about it doing this for Firefox too.
The sad part is, knowing the average Windows user, they can probably gain 10 to 20% market share just from people literally not noticing the switch…
Nice. So user got auto switched from Google’s chromium to Microsoft’s chromium? That’s almost just a skin. More worried about it stealing Firefoxs’s tabs. Specially since I like my addons.
There’s nothing stopping it from harvesting the data (open tabs, bookmarks, history, etc) from Firefoxs files too.
Chrome just happened to be the non-edge browser the articles author was using.
Who cares? Stop using Chrome.
So awful that they have to steal sessions now.
Laughs in Firefox.
I’d be shocked if Edge installed itself and take over Firefox data in my linux install. Impressed, but also very shocked.
I would genuinely like to see Edge open all 848 tabs I have hoarded over 61 Chrome windows. I wonder if it could do it faster than Chrome manages. After rebooting, Chrome reopens, with all my tabs intact, in about 5 minutes. Provided a sanitary shutdown, that is. It takes more like 15 minutes for it to become responsive again after a (rare) crash.
Clearly I have lost control of my life.
And yes, before you get on my case, I am working on switching back to Firefox after using Chrome for the last decade. It just takes a long time to pare down all these tabs.
I wonder if it could do it faster than Chrome manages.
It would probably be the same time, Edge is just Microsoft Chrome after all.
Is there a benefit you see for having open tabs instead of bookmarks ready to open when needed?
I don’t understand the tab hoarder mentality. I can’t stand having too many tabs open it makes everyone disorganized and less useful.
My workflow is to open random links and searches in private tabs and then when I’m done with the search I just close the window and they’re all gone. I also split subsequt searches up into multiple private windows with a few tabs each so once I find what I need on one search I can close those and have the ones I’m still using ready. If there’s something I need to reference later I can move it over to the regular browser window or bookmark it.
Makes it easier to manage and doesn’t get out of hand that way.
You’re thinking about this too productively. I have forty tabs open because I’ll get to it later and every time I see my fifty tabs it’s a reminder to get stuff done. Then I close a few tabs, look at the other seventy and feel a sense of accomplishment!
It’s not because I have a semi-crippling executive function disorder that I pretend is just a curiosity about the world and a love for learning.
Yes! Bookmarks are for things I’ll need to reference again and again in the coming years. I do keep a tightly-curated bookmark collection, I just don’t want it clogged up with a bunch of stuff I can’t foresee needing in the long term.
Tabs are for things I’m working on right now and don’t need bookmarking for the long term. And, for what it’s worth, most of the browser windows are custom-titled, so the windows themselves are a lot like bookmark folders, while the tabs are like temporary bookmarks.
Plus, the ability to search through tabs by hitting Ctrl+Shift+A means that it ends up being faster to search through my tabs than my bookmarks, without using the mouse. ex: Ctrl+Shift+A, Type needed page, up/down arrows if needed, then hit enter to move to the tab. With Ctrl+Shift+O, you don’t get the same ease of scrolling the results without tabbing through a bunch of junk first.
There are other reasons, including neurological ones surely, but those are my primary justifications.