Aren't we in an era when you literally can build your own browser with everything just you need? I have no knowledge in browsers developement. But in my field it became often easier to make your own tool\app then trying to use third party and make it work for you
My practical approach to surfing the web safely
11–20 of 49 posts
Re: My practical approach to surfing the web safely
#12And use chromium based browser (I preffer Brave Origin). Using firefox for "secure browsing" does not make much sense in 2026! Mozilla has different priorities! Firefox development is under financed for several years now, and Firefox has weaker security model!
Re: My practical approach to surfing the web safely
#13 #!/bin/sh
TMPDIR=$(mktemp -d /dev/shm/chrome-XXXXX)
chromium --user-data-dir=$TMPDIR --no-first-run --no-default-browser-check --disable-features=DefaultBrowserPrompt "$@"
rm -rf $TMPDIRRe: My practical approach to surfing the web safely
#14Knowing some folks that work on "major-browser-vendor" security in the era of Mythos-found-and-exploited vulnerabilities everywhere, the thought of running completely random untrusted Javascript on my machine has freaked me out to the point that I run NoScript on all of my machines now. I've found NoScript actually very usable, as long as you allow yourself to be fairly liberal in marking domains "trusted." I only tr…
Same experience as you, also: many sites actually work well enough without JavaScript, and the ones that do require it to display anything make me pause and ask if I truly want to give that site the privilege of running code on my computer. Majority of the time the answer is no.
Re: My practical approach to surfing the web safely
#15Re: My practical approach to surfing the web safely
#16This makes you identifiable across containers and subverts the whole idea.
So don't use sync.
Re: My practical approach to surfing the web safely
#17Another good addon is ClearURLs 1.27.3 which clears suspicious parameters of query strings on everything what's loaded by page. It sometimes break sites.
Re: My practical approach to surfing the web safely
#18I have a handy little script called `chrome-new` which I use whenever I want to browse one of those few sites that struggles with Firefox. It just starts a clean Chromium with a throw-away profile, then deletes it when I close the browser. #!/bin/sh TMPDIR=$(mktemp -d /dev/shm/chrome-XXXXX) chromium --user-data-dir=$TMPDIR --no-first-run --no-default-browser-check --disable-features=DefaultBrowserPrompt "$@" rm -rf $…
Re: My practical approach to surfing the web safely
#19For Firefox I recommend Cookie AutoDelete 3.8.2 addon. It is possible to configure it to erase all storage (cookies, indexeddb, localSorage and others) after chosen time (default 15s) after changing/leaving domain. It has many other useful options. Another good addon is ClearURLs 1.27.3 which clears suspicious parameters of query strings on everything what's loaded by page. It sometimes break sites.
Re: My practical approach to surfing the web safely
#20Knowing some folks that work on "major-browser-vendor" security in the era of Mythos-found-and-exploited vulnerabilities everywhere, the thought of running completely random untrusted Javascript on my machine has freaked me out to the point that I run NoScript on all of my machines now. I've found NoScript actually very usable, as long as you allow yourself to be fairly liberal in marking domains "trusted." I only tr…
Qubes OS is looking less crazy lately too.