#Browser
Vanadium version 112.0.5615.48.0 released: https://github.com/GrapheneOS/Vanadium/releases/tag/112.0.5615.48.0.
See the linked release notes for a summary of the improvements over the previous release and a link to the full changelog.
Forum discussion thread:
https://discuss.grapheneos.org/d/4184-vanadium-version-11205615480-released
Okay, I've tested Vivaldi for a matter of minutes and it feels pretty great. Anyone know of major upsides / downsides, and hot customization tips? #browser #vivaldibrowser
How to Disable browser notifications in Chrome via GPO in Windows
#Browser, #Chrome, #GoogleChrome, #GPO, #GroupPolicy, #MicrosoftWindows, #Web-browser, #Windows, #Windows10, #Windows11, #WindowsServer, #WindowsServer2012, #WindowsServer2016, #WindowsServer2022
#Chrome is widely known for being a #memory void, demanding a lot in terms of processing power from users. With Memory Saver turned on, a slow Chrome #browser can turn into something a lot more manageable. https://tchlp.com/40Ii6td
More than once i had the need to have some sort of separator on the tabs row in the browser (not all browsers have tab grouping)
Looked it up and there was one extension that added a blank tab whenever you needed.
As i usually want to avoid extensions, i went ahead and made a simple and silly thing that actually works for me 😅
If you had the same need give it a go it might be helpful for you too https://labs.binaryunit.com/tab-separator/
Why do you have so many tabs open when God gave you #browser history and #bookmarks!? #web
What web browser(s) do you use?

#Arc #Browser. Ab dem 30.03.2023 auch für #iOS. Es bleibt spannend!
https://apps.apple.com/de/app/arc-mobile-companion/id1669785846

#Development #Evolutions
Push notifications are now supported cross-browser · Finally, you can deliver timely and valuable notifications to your web users https://ilo.im/11z54f · by @tomayac
_____
#Browser #Chrome #Edge #Firefox #Safari #BrowserEngine #WebDevelopment #WebDev #Frontend #PWA #WebApp #PushNotifications
Make Use Of: 8 Ways to Stop Websites Opening Automatically in Chrome https://www.makeuseof.com/stop-websites-opening-automatically-chrome/ #Tech #MakeUseOf #TechNews #IT via @morganeogerbc #Troubleshooting #GoogleChrome #Internet #Browser
@drahardja I view #Mastodon with a web #browser, and have no complaints about the experience at all.
Ok, so with #Mozilla taking the #BluePill on the subject of #AI / #LLM (as per their newsletter on mozilla.ai today) they key question is:
What other #browser|s are out there? Obviously nothing from #Google (not sure if #Chromium is safe?). While I love the idea of #Tor, for most of my day-to-day I'm ok with slightly less bullet proof stuff. What are YOU using on your desktops and laptops?
ARC browser (Mac)
Arc is, by far, the best browser for Mac (iPhone and Windows coming) - for my workflow.
However, the last update has broken my ability to upload my images to Substack.
Safari does not have this problem.
Google möchte Laufzeiten für TLS-Zertifikate verkürzen
Zertifikate für Web-Server sollen statt wie bisher ein Jahr nur noch maximal 90 Tage gültig sein, fordert Google – das hätte heftige Konsequenzen.

📬 Dezor Premium läuft jetzt: vom Browser- zum VPN-Anbieter?
#Streaming #Browser #DezorPremium #koolto #Mediaplayer #vpnanbieter https://tarnkappe.info/artikel/streaming/dezor-premium-laeuft-jetzt-vom-browser-zum-vpn-anbieter-272233.html
Twemex is a #browser #extension for #Twitter that automatically surfaces the most interesting ideas.
It helps you spend less time mindlessly scrolling, and more time developing your thoughts.
#Development #Releases
WebKit features in Safari 16.4 · Apple’s most gigantic WebKit release yet, including PWA features! https://ilo.im/11yb28
_____
#Browser #Safari #WebKit #WebDevelopment #WebDev #Frontend #PWA #WebApp #WebPush #AppBadges #WebComponents #ShadowDOM #CSS #HTML #JavaScript #WebAssembly #WebAPI #DeveloperTooling #WebInspector #SafariWebExtensions #SafariContentBlockers #Image #Audio #Video
#Arc, a #browser described as an attempt to be “the web’s operating system,” is getting a companion app for #iPhones on March 30th https://tchlp.com/40GgVud
#Nyxt the #hacker #browser 3.x prerelease 5 - https://github.com/atlas-engineer/nyxt/releases/tag/3-pre-release-5 #VIM #Emacs #Unix #Linux #GNU #HackAllTheThinz

![// Change text selection in document
document.onselectionchange = () => {
/* HACK[id=safari-selection] In Safari, clicking a button clears the text
selection. Because the Pelicanizer relies on the text selection being
preserved upon clicking a button, we have to find some way to preserve the
text selection.
To work around this, every time the text selection changes, we save all text
selection ranges (only Firefox supports multiple ranges, but just in case),
and whenever a Hide/Toggle/Show button is clicked, we clear the text selection
(again, just in case) and store the saved ranges back into it.
*/
const sel = window.getSelection();
// If selection type isn't Range or selection has 0 ranges
if (sel.type !== "Range" || sel.rangeCount === 0)
{
// We aren't selecting anything
lastSelectionRanges = null;
return;
}
// Collect all ranges in selection
lastSelectionRanges = [];
for (let i = 0; i < sel.rangeCount; i++)
{
lastSelectionRanges[i] = sel.getRangeAt(i);
}
};](https://s3.eu-central-2.wasabisys.com/mastodonworld/cache/media_attachments/files/110/095/525/552/289/681/small/a3162bb8899d2bad.png)
![// Helper function for "___ Selected" buttons
function buildSelectedButtonHandler(action) {
return () => {
// Clear text selection
const sel = window.getSelection();
sel.removeAllRanges();
// Add back ranges from last selection
// LINK #safari-selection
for (const range of lastSelectionRanges ?? [])
{
sel.addRange(range);
}
const letters = getSelectedElements()
.filter(nodeIsVisible)
.filter(n => n.classList.contains(PELICAN_LETTER_CLASS));
// If there are no letters, do nothing
if (!letters.length) return;
shouldRegenerateImage = true;
letters.forEach(n => {
n.classList[action](PELICAN_LETTER_HIDDEN_CLASS);
});
};
}
// Click "___ Selected" buttons
hideButtonEl.onclick = buildSelectedButtonHandler("add");
showButtonEl.onclick = buildSelectedButtonHandler("remove");
toggleButtonEl.onclick = buildSelectedButtonHandler("toggle");](https://s3.eu-central-2.wasabisys.com/mastodonworld/cache/media_attachments/files/110/095/525/633/804/308/small/d86cb7c9bf2745d3.png)
💡 #TIL #HowTo always enable #Reader mode icon in #firefox:
You have to set 'reader.parse-on-load.force-enabled' to true on the about:config page.
(Of course, Firefox #documentation was not helpful, because, why would it.)
https://support.mozilla.org/en-US/kb/firefox-reader-view-clutter-free-web-pages#firefox
#config #lifehack #mozilla #browser #clutterfree #distractionfree

#Microsoft is making vertical tabs in #Edge #browser easier to use https://tchlp.com/3z7ANur
Survey results:
Question : What kind of ads do you prefer (or can tolerate)?
856 voted.
62% hate all ads.
36% are OK with context sensitive ads
1% are OK with surveillance based ads
1% love all ads.
It is good to see a clear refutation of the surveillance based ads.
It is also clear that the damage that the surveillance based ads have done will take a while to heal. The sooner we ban these kind of ads, the better.
@aburka @BennettTomlin carbonyl is a #FOSS #browser in your terminal (including over ssh) that complies with all web standards. Under the hood html2svg at 60 fps. Launches in seconds.
https://github.com/fathyb/carbonyl
#carbonyl #chrome #chromium #firefox #librewolf #html #svg #javascript
Great news! 👀 A few weeks ago, I asked the Feedbro devs if they could enhance their Web browser plugin to better handle Mastodon RSS feeds, and the latest version 4.15.6 is already improving the Mastodon experience by displaying article titles! 👍


#Windows11 #phishing #protection boost, #AI #chatbots compared, avoid your #browser's #password manager, Mozilla's new Trusted AI startup, 3 ways to speed up #Windows, #publishers seek payment for work used by AI, and more in this week's wrap-up https://www.techhelpkb.com/tech-wrap-up-week-12-2023/?utm_source=mastodon&utm_medium=toot&utm_campaign=wrapup
I am playing around with Chromium-in-a-terminal graphical-yet-command-line browser, Carbonyl:
https://github.com/fathyb/carbonyl
It's rather cool for those willing to use a mouse to navigate it. At least, I haven't found a way to navigate using just my keyboard so far.
I tend to use links at the moment, but many poorly-designed sites choke it :(
(I also tried browsh, but, well, it wasn't ideal for me.)
Which browser engine do you prefer?
I personally prefer Gecko browsers (mainly LibreWolf) but I use Ungoogled Chromium too sometimes.
#browser #blink #webkit #gecko #browserengine #webbrowser #fosserytech
'🎉 Just tried the new Arc browser by The Browser Company!
🌐 It reimagines the browser as a workspace, suitable for our multitasking lives.
🔥 Features include tabs that expire, spaces for grouping tabs, and more!
🎯 These innovations declutter the browser, improve focus, and boost productivity.
📖 Curious to know how Arc can change your browsing experience? Check out my blog post: https://ericmjl.github.io/blog/2023/3/25/arc-browser-first-impressions/
For friends in my network that would like an invite, please send me a DM!
PrivacyTests.org: open-source tests of web browser privacy
....Übersicht aller gängigen Browser (Mobil- bzw. Desktopvariante) bzgl. ihrers Verhalten gegenüber Tracking, Fingerprinting, Blocken von Trackern und weiteres.
#privacy #tracking #browser #fingerprinting #opensource #PrivacyTests
#Privacy has moved to the forefront of the public's minds. As we use apps every day, we wonder if our data is really protected. This is where The Onion Router, or #Tor, a web #browser comes in to prove this. https://tchlp.com/3ZgaPzM
In search of the perfect text-based web-browser for my phone I've now got w3m, elinks and lynx installed.
The ncurses windowing of elinks is impressive, but w3m's elegant pager simplicity is giving it the lead. I just can't get enough of it.



The choice between a #browser #password #manager and a real password manager is clear. https://tchlp.com/3JS8LbA
Muttern ruft an. Der #Akku ihres Handys ist immer so schnell leer.
Ich komm zu Besuch. Im #Browser #Fennec 20 Tabs dauerhaft offen. Vielleicht hätte ich ihr sagen sollen, dass man die auch schließen kann.
Dann Akku angesehen. Total aufgebläht, so dass sogar schon der Bildschirm des Handys betroffen war. Den Akku hat sie sich von einem Händler andrehen lassen. Da steht 2013 drauf.
harrrrrrrrrrrr 😡

I rarely throw around the term "bloated", but... god damnnn #microsoft edge is a bloated sons-a-bitch.
Just... a million settings and clicks for a million things. Yes, an exaggeration, but still.
You think for something bundled in, it wouldn't spam you with unwanted shit right off the bat and THEN SOME. #browser #tech #os
This is a great article on #privacy and #browser #fingerprinting - including how to block it in browsers like @mozilla #Firefox.
I was really surprised that this was not a default setting in Firefox.
https://www.bitestring.com/posts/2023-03-19-web-fingerprinting-is-worse-than-I-thought.html
what desktop #browser are we all using these days? I feel like a change because Edge is a bloaty mess now. 🤔
#Business #Development #Evolutions
Health benefits of browser diversity · “A pivot in strategy from Apple could open up so many doors to a healthier web” https://ilo.im/11vdd7
_____
#BrowserChoice #Browser #BrowserEngine #Chrome #Edge #Firefox #Safari #iOS #iPadOS #WebDevelopment #WebDev
#browser
I need on ubuntu 2 separated browsers, chromium stopped to work and I don't want use google's chrome. Could you recomend some good browser for ubuntu? Or should I just do separated profiles in firefox?
#Webbrowser: #Chrome-Update dichtet acht Sicherheitslücken ab | heise online https://www.heise.de/news/Webbrowser-Chrome-Update-dichtet-acht-Sicherheitsluecken-ab-7611326.html #Browser #Patchday #Chromium #ChromeBrowser #GoogleChrome
Mal ein wieder etwas nerdigerer #PCtipp-Content. Diesmal dazu, wie man #Chrome, #Edge (und teils auch #Firefox) mit bestimmten Startparametern öffnet, damit sich der #Browser z.B. direkt im Vollbild oder in einer bestimmten Grösse usw. öffnet. https://www.pctipp.ch/praxis/browser/spezielle-verknuepfungen-chrome-edge-firefox-2849177.html
#Microsoft thinks it will change the world with their new #AI and #Bing search, but they can't even get people to use their own #browser
This is constantly showing in my "Control Panel" on #Windows10 because I don't use #Edge. Truly pathetic and embarrassing.

Fake GPT Chrome extension steals Facebook session cookies, breaks into accounts.
#Business #Development #Explorations
Web fingerprinting is worse than I thought · The current state of web fingerprinting and how to protect yourself https://ilo.im/11tnt6
“Fingerprinting in browsers works and severely undermines our privacy.”
_____
#Fingerprinting #UserIdentification #Tracking #WebDevelopment #WebDev #Browser #Chrome #Firefox #Tor #Privacy
I think I'll add it to my guidance about cleaning up your #browser window before #screensharing.
https://tedcurran.net/2023/02/clean-up-your-browser-when-screen-sharing/
@YourAnonRiots #TorBrowser should be the #default #browser for anyone with very, very few exceptions...
Mit Edge zum Web3: Microsoft testet eine Krypto-Wallet
Zwischen MicrosoftMitarbeitern soll eine Testversion von Edge kursieren, die eine Krypto-Wallet integriert – inklusive Links zu Krypto-Börsen.
#Browser #MicrosoftEdge #Ethereum #Kryptowährung #Microsoft #news

Web fingerprinting is worse than I thought #browser #privacy
https://www.bitestring.com/posts/2023-03-19-web-fingerprinting-is-worse-than-I-thought.html
Vanadium version 111.0.5563.116.0 released: https://github.com/GrapheneOS/Vanadium/releases/tag/111.0.5563.116.0.
See the linked release notes for a summary of the improvements over the previous release and a link to the full changelog.
Forum discussion thread:
https://discuss.grapheneos.org/d/4031-vanadium-version-111055631160-released
#videosFTV #browser #softlibre
"Hoy veremos tips para aplicar en Abrowser el navegador 100% libres propuesto por Tisquel." Por @rikylinux_ar
I really need to find a good web browser for Windows that just works and doesn't do stupid things.
One that I can import all of my bookmarks from Edge/Chrome into it, one that uses extensions for things like BitWarden, Stylus, uBlock Origin, screenshot tool, note taking tool and a few other things.
Where to start and what to look at is the big question here.
Got suggestions? Tell me in the comments below!
Web fingerprinting is worse than I thought
📝 https://www.bitestring.com/posts/2023-03-19-web-fingerprinting-is-worse-than-I-thought.html
--
#web #browser #tracking #privacy #fingerprinting #internet
Introducing OONI Probe Web 🐙✨
https://probe-web.ooni.org
In response to community feedback, we created a new browser-based censorship measurement tool.
Learn all about OONI Probe Web in our blog post: https://ooni.org/post/introducing-ooni-probe-web/
#launch #ooni #ooniprobe #ooniprobeweb #browser #censorship #measurement #opendata

Konkurrenz für Chrome und Firefox? Amazon befragt Kunden zu Webbrowsern
Amazon möchte wissen, was Menschen an Browsern wichtig ist. Einige der Fragen lassen vermuten, dass der Konzern über eine Konkurrenz zu Chrome & Co. nachdenkt.

Not enough #tracking? What about an #Amazon web #browser with maybe their VPN embedded?
🎵 “Every breath you take , And every move you make , Every bond you break , Every step you take , I'll be watching you” 🎶
If this come to reality, I’m sure it’s for our own good and not their interests 🥰❤️
</irony>
🔗 : https://twitter.com/nicholasadeleon/status/1635318982285881344
#gafam #surveillance #surveillancecapitalism #freedom #censorship
#Vivaldi #browser’s CEO doesn’t believe in the attention- and #tracking-based #advertising world we live in today, and is advocating for a radical renaissance that shifts us to a broad and #content-based approach. https://tchlp.com/3Lzezcr
You know I typically only take the piss out of @jaffathecake but I honestly really respect the work he and his team are doing on #viewTransitions
I don't even know if I care about the feature, but his dedication to the #webStandards process and immaculate communication of it is fucking admirable! #careerGoals
Do slippymaps next Jake!
>SPA view transitions land in Chrome 111 https://developer.chrome.com/blog/spa-view-transitions-land/
Meet Kazuhito Kidachi, a Vivaldi user from #Japan with a wealth of knowledge of browser specifications and #accessibility.
Join us as we find out why the accessibility-minded Kazuhito Kidachi chooses Vivaldi as his main #Browser ⬇️
https://vivaldi.com/blog/technology/user-story-why-accessibility-minded-kazuhito-kidachi-chooses-vivaldi/
heise+ | Was das zweite Mini-Funktionsupdate für Windows 11 bringt
Microsoft beschreibt das zweite Moment-Update für Windows 11 Version 22H2 als "großes Update, das den Alltag erleichtert". Wir betrachten die neuen Features.
#Bing #Browser #ChatGPT #KünstlicheIntelligenz #Spracherkennung #Suchmaschine #Windows #Windows #news
Anonymes Surfen: Brave-Browser integriert VPN- und Firewall-Dienst
Brave weitet die Verfügbarkeit des integrierten VPN- und Firewall-Dienstes auf die Desktop-Version aus. Datenschutz wird versprochen – dieser hat seinen Preis.
#Development #Explorations
Future CSS: Anchor Positioning · “Anchor positioning might be one of the most exciting features coming to CSS” https://ilo.im/11pd5j
_____
#WebDevelopment #WebDev #Browser #Chrome #Frontend #CSS #AnchorPositioning
If you install a #PWA with a #browser it will open links in that browser instead of your default. That may not be surprising, but it's not how native applications work. #progressiveWebApps #webDev
#Design #Development #Launches
Scrollbar · A web app to design and implement custom CSS scrollbars https://ilo.im/11isbp
_____
#UiDesign #WebDesign #WebDevelopment #WebDev #Browser #Blink #WebKit #Frontend #Scrollbar #Tool #CSS
Mozilla is joining the #Fediverse with their own instance today:
#Development #Introductions
SPA view transitions land in Chrome 111 · The present and future of a much-requested feature from developers https://ilo.im/11lc82
_____
#Animation #WebDevelopment #WebDev #Browser #Chrome #Frontend #DOM #SPA #API #ViewTransitionAPI #JavaScript #ProgressiveEnhancement
So I changed back to Chromium on Linux, found an apt version that works better.
Firefox has all kinds of quirks that I'm not very fond of, it's more strict about extension policies and scripts so most of my FF extensions are not working properly.
I'm also so used to Chrome DevTools that I can't cope with Firefox tools.
I know Google wants to track me, but I have loads of network apps that prevent it, like AdGuard Home, VPN, etc.
Dig deeper's article about browsers is top notch, TL;DR; No browser is good. Trust me, I've tried them all.
> The only reasonable choice is Pale Moon. Or, just try wean yourself off the modern web by sticking to websites such as the ones on Neocities, wiby.me, etc. which are functional in NetSurf or terminal browsers.
https://digdeeper.neocities.org/articles/browsers #Browser #Chrome #Firefox #WebDev
#Development #Releases
New in Chrome 111 · View Transitions API, CSS Color Level 4, new color devtools https://ilo.im/11jn9m
_____
#WebDevelopment #WebDev #Browser #Chrome #DevTools #Frontend #CSS #TransitionsAPI #ColorSpace #ColorPicker #ColorConversion
heise+ | Kurztests: Linux-Tool Flatseal, Mac-App Hookmark, Playlist-App PlaylistAI
Helfer im IT-Alltag: Flatseal für die Linux-Konfiguration, Hookmark für den Überblick auf dem Mac und PlaylistAI für die passende Wiedergabeliste.
#Browser #KünstlicheIntelligenz #macOS #LinuxundOpenSource #Test #news
Vanadium version 111.0.5563.58.0 released: https://github.com/GrapheneOS/Vanadium/releases/tag/111.0.5563.58.0.
See the linked release notes for a summary of the improvements over the previous release and a link to the full changelog.
Forum discussion thread:
https://discuss.grapheneos.org/d/3685-vanadium-version-11105563580-released