Smarter Than 'Ctrl+F': Linking Directly to Web Page Content
228 points by damir 8 months ago | 136 comments- lolinder 8 months agoToday I learned that Firefox finally implemented these! They don't mention this in the article, but that's new this month—for the longest time Chrome supported it but it isn't in the standard and Firefox didn't include it. Safari got it 2 years later, but Firefox held out for a while.
I'm normally not a fan of Chrome unilaterally adding something to the platform, but this has been a long time coming.
- kenrick95 8 months agoI was surprised too, cause initially they had some issues with the proposal [1], resolved it few years later [2], and finally implemented it since last year [3]
[1] https://github.com/mozilla/standards-positions/issues/194#is...
[2] https://github.com/mozilla/standards-positions/issues/194#is...
- kenrick95 8 months ago
- gertrunde 8 months agoIn all honesty, I've hated this feature with a passion ever since it appeared.
If it was simply a matter of being used in the way outlined in the article, when someone creates a a link that references a particular piece of text, then fine, someone has deliberated intended the link to behave like that.
And then we have the lovely folk at Google search... who think it's fun to drag my attention off to a random part of a page that isn't where I want to be, forcing me to right-click, remove annotation and scroll back up to the top of the page.
That doesn't seem like a massive hardship, but it gets quite frustrating when multiplied over the many searches done in a day/week/month.
- thebytefairy 8 months agoIsn't the reason it highlights that from search because that was your search term? That's what I've seen, in which case I prefer that it does draw my attention to that string
- KTibow 8 months agoThat sounds annoying, even if the only work required was to press `Home`. Does this only happen with the featured snippets?
- coryfklein 8 months agoSounds like your problem is with a Google product more so that the browser feature itself. I for one can't wait to start using these kinds of deep links. I love when websites have "copy link to header" buttons, but even when they do I often want to link to a particular sub-paragraph or sentence as a citation... and now I can!
- thebytefairy 8 months ago
- rakoo 8 months agoUnsurprisingly this is something you could do in Plan 9:
opens the file and sets the selection to the range of text between "from" and "to". Bonus: you can use regular expressions./path/to/file:/from.*to
It pains me to see the web having strayed so far from its focus on interlinking. It's easy to make a parallel when on one side device makers have taken control back by removing access to files and putting applications first (this is the only model on mobile), to the point that those makers have enormous control over apps' existence, and the web where applications are now the only way to access content, to the point that content may or may not available if the right API exists.
- c-linkage 8 months agoThe world wide web has moved beyond documents to apps. With apps there is nothing left to interlink.
- gradientsrneat 8 months agovim users may be pleased to know that this can be done when vim is invoked from the command line, via the +/{pat} option. Sadly doesn't work for gF (yet).
See also hyperbole for emacs.
- c-linkage 8 months ago
- shakna 8 months agoSuper unintuitive that the HTTP header a site can set, to disable this, is:
Document-Policy: force-load-at-top
- dspillett 8 months agoUnfortunately, not supported away from chromium derived browsers ATM: https://caniuse.com/document-policy (though given current market shares that sill means the majority of your user base is likely to have support)
- pimlottc 8 months agoDoes that disable the highlighting too or just the auto-scroll behavior?
- shakna 8 months agoI think we're a long way from standardisation just now. So the behavior of the header is verging on the undefined territory. It might do something. It might even order a grape soda. Hopefully it does what you want. It might not.
- shakna 8 months ago
- dspillett 8 months ago
- fbn79 8 months agoIn Google Chrome select text, right click and click "copy link to highlight". It create a link with ~:text=
- thinkingemote 8 months agoProgrammatically what can a developer do with this?
I see that there is a method and an object to see if its enabled or not. And there is a way to get the whole fragment which can be parsed.
Are there methods to see whether some text in the fragment was actually highlighted or not? Are there methods to programmatically select text?
Could there be a way to, for example, draw a rectangle around the highlighted section, to get the coordinates of the text, to read out the selected text, to store what words people select and link to etc
Maybe it's an external link about headline news and the news title got changed by the editor. Maybe the developer may want to change the selection to the edited title so the user isn't surprised. Maybe its a multi lingual blog post and the user links using another language... etc etc
- xp84 8 months agoSince you have access to the URL fragment in JS, you should be able to do any of that manually even if there isn't a special API to use. The easiest thing to do would be to check for this specially-crafted fragment in the URL and store it.
I think though that this is a pretty niche feature though, so it's unlikely to be a big source of data. In my experience, the median sophistication web user has discovered that the browser's Back button exists and can Open in New Tab. Bookmarks, zoom, ctrl-F are all too confusing. A feature that requires right-clicking may as well be black magic to most people.
- xp84 8 months ago
- pbiggar 8 months agoI use these for footnotes, eg in [1] which had a lot of footnotes. Ghost and other blogs don't support footnoting well afaict. Sometimes I miss restructured text, which did this quite well, markdown alas does not.
- donohoe 8 months agoI built something like this for The New York Times and it was one of the more fun projects I did there.
The thing I really hoped this "new" version would account for is when text changes and having links survive minor edits/changes. Perhaps I missed it and it does.
- https://github.com/NYTimes/Emphasis
- https://open.nytimes.com/emphasis-update-and-source-6ffac5e6... (2011)
- cxr 8 months agoThere's no such thing as "text changes". Only publishers lying about URLs and response bodies. This should stop.
- donohoe 8 months agoUm. This is where I can attest that you are 100% wrong. Sorry.
It does. Text changes. It is not frequent, often minor. Corrections can be more significant depending on their nature.
- cxr 7 months agoYou're not sorry. You're just insincere.
This isn't Harry Potter. Text doesn't change.
New revisions are issued, but the text changes no more in those instance than it does when a publisher releases an update to a print work originally published in 1985 with a second edition. The text of the second edition might differ from the first edition, but the first edition's text doesn't change, and the first edition is still the first edition (instead of the first and second editions being synonymous). And the publishers of the print editions could try lying about the identity of these two distinct manifestations the way that online publishers lie about the identities of the works they publish, but no amount of lying about it makes the lie true.
Text doesn't change.
- cxr 7 months ago
- donohoe 8 months ago
- ahmadalfy 8 months agoWow, this is interesting to see. Thanks for sharing. This was long before any standardization in this area
- cxr 8 months ago
- jiri 8 months agoIt would be nice to have similar feature like this, but to highlight rectangle (instead of text) on the page to focus viewer on some specific area. I send screenshots with highlight quite often.
- rafram 8 months agoPretty difficult to specify a rectangular region within reflowable content. It would need to be anchored by element edges, but if the algorithm chooses bad anchor elements or they reflow in weird ways (a layout that goes from horizontal to vertical on small screens, for instance), everything breaks.
- tough 8 months agoyou could try and target a div to highlight
- tough 8 months ago
- bandie91 8 months agoor every document on the web may have hierarchical semantic structure, so you can link/refer to a heading in any depth. eg #1 → first chapter; #1.2 → first chapter second heading; #1.2.1 → first chapter second heading first paragraph; #1.2.1.5 → first chapter second heading first paragraph 5th sentence. it won't neccessary be chapter-heading-paragraph-sentence 4-fold structure - just wanted to illustrate in conventional language -, but any level of structure.
…why not put a css-selector in the link?
- rafram 8 months ago
- al_borland 8 months agoEvery time I run across this I think about how useful it is, then forget it exists and never actually use it.
- ninalanyon 8 months agoLooks like Firefox is lagging behind. It understands the url but there doesn't seem to be a way to create it from the UI. Chromium has "Copy link to highlight" in the right click/context menu but Firefox 131.0.3 doesn't. There is an add-on though: https://addons.mozilla.org/en-US/firefox/addon/link-to-text-...
- andai 8 months agoI've noticed that Google inserts this into result links sometimes, taking you to the relevant part of the page.
- JodieBenitez 8 months ago
- weinzierl 8 months agoI was thinking of that as well. I wonder what the world would look like if the whole XHTML angle would have been a success. While it certainly had its flaws, there were definitely some interesting ideas.
Besides XPointer and its precise addressing I used to be very fascinated about more generic link types. I don't remember the spec (was it XLink?) but there was one where source, target and the location where the link was specified were independent. A link could also have multiple ends.
So you could create a personal document that linked a HN comment to two different sentences in a Wikipedia page for example.
- cxr 8 months ago
- weinzierl 8 months ago
- srcnkcl 8 months agoI always wished something to point at typos in websites... thanks for that
- westurner 8 months agoIs there a specified / supported way to include other parameters in the URI fragment if the fragment part of the URI starts with :~:text=?
w3c/web-annotation#442: "Selector JSON to IRI/URI Mapping: supporting compound fragments so that SPAs work" (2019): https://github.com/w3c/web-annotation/issues/442https://example.com/page.html#:~:text=[prefix-,]textStart[,textEnd][,-suffix] https://example.com/page.html#:~:text=... https://example.com/page.html#:~:text=...¶m2=two&:~:param3=three
WICG/scroll-to-text-fragment#4: "Integration with W3C Web Annotations" (2019): https://github.com/WICG/scroll-to-text-fragment/issues/4#iss...
- rkta 8 months ago> Text fragments are currently supported in all the browsers.
All meaning all the browsers listed in the linked table. These may be the major browsers, but not all of them.
- vanviegen 8 months agoBrave has this feature disable due to (rather minor, imho) privacy concerns.
- joveian 8 months agoThat is an interesting issue (detect differing resource loading based on the document jump) that affects regular fragments as well, but the idea is that particularly sensitive pages would know not to have fragment targets in the page but couldn't prevent text fragments. The solution given (deterministic loading independent of jump target) seems like a good idea to work towards but meanwhile I agree it is a minor concern and pages should not avoid reasonable navigation due to this issue. Particularly since there are often other ways of getting the same information with the same type of network analysis.
- joveian 8 months ago
- rafram 8 months agoBy market share, that table contains all the major browsers and more.
- vanviegen 8 months ago
- amadeuspagel 8 months agoI wonder whether it was a mistake to separate this feature from a standard selection.
I don't know how to design it separately. The default is that selections are blue and fragments are purple, but if you choose different colors for both, in line with your color scheme, how will people know which is which? I guess you can still choose different tones of blue and purple.
Why shouldn't selecting text automatically update the address?
- V__ 8 months agoSome sites do: The Wayback Machine changes the url if you change the selection.
- V__ 8 months ago
- dbodin11 8 months agoThis is the ultimate time saver feature when sharing. I built a web layer that does this, but goes further with multiple highlights, navigation, and rich inline communication with humans and AI, which is integrated with a web app to save, organize, and share with humans and AI. It’s https://www.kontxt.io
- dveeden2 8 months agoWith a addon this is much more usable, not sure why there isn't a selection-to-text-fragment-link functionality builtin to Firefox...(same for other browsers?)
- extraduder_ire 8 months agoSupport for the feature itself was only added in a very recent mainline firefox release. Like, less than one or two months ago.
- olejorgenb 8 months agohttps://addons.mozilla.org/en-US/firefox/addon/link-to-text-... extension for creating links
- olejorgenb 8 months ago
- RamRodification 8 months agoAccording to the post
> If you’re using Chrome, simply highlight some text, right-click, and you’ll find the “Copy link to highlight” option in the context menu
- extraduder_ire 8 months ago
- hk1337 8 months agoIt’s really cool but it seems rather convoluted for the typical user. We should perhaps start making good use of the ID attribute and linking to that first before we start trying to use ~:text=
- orr94 8 months agoUsing text fragments is particularly useful when you don't control the page you're linking to and it doesn't have a good anchor to link to.
- IshKebab 8 months agoIt's literally three clicks... Select text, right click, create link to selection.
I agree you should prefer IDs but they aren't always available, and often using them is very convoluted for users (how many are going to know how to use the element inspector, or even what an ID is?).
- hk1337 8 months agoIt's not difficult for you and me, sure. Try explaining you need to add a tilde, colon, the work text, equals sign then the text you want to the end of the URL.
- lolinder 8 months agoYou're missing that Chrome has this built in to the context menu. My dad has been sending me links like this for years now, they just haven't worked for me until this month because I use Firefox.
I'm assuming Firefox has this context menu feature on the road map as well, though I suspect it will be a long time before Safari adds it just because Apple.
The average person doesn't even understand a URL at all—as far as they're concerned they're generated by computers for computers and are copied around with little regard for what the various components mean. This feature doesn't change that, it just gives a new way of creating a URL that does something slightly different.
- aembleton 8 months agoWhy can't the browser do all of that when you create a link to the selection?
- lolinder 8 months ago
- hk1337 8 months ago
- 8 months ago
- orr94 8 months ago
- seinecle 8 months agoI wonder how that can be leveraged for SEO
- polotics 8 months agoVery nice! Hopefully Firefox developers have the bandwidth to implement this as well, and not let Google Chrome have this feature as an "embrace and extend" differentiator. As for MS-Edge, well I guess it must be funny for Microsoft to see they're getting a taste of their own sweet old medicine...
- arp242 8 months agoIt was added to Firefox in 131, released a few weeks ago: https://www.mozilla.org/en-US/firefox/131.0/releasenotes/
And "add useful UX features that people want" is not "EEE", especially when there's a standard doc and test suite for it.
- amiga386 8 months agoFYI, the "standard doc" isn't in any sense standardised yet
https://wicg.github.io/scroll-to-text-fragment/
> This specification was published by the Web Platform Incubator Community Group. It is not a W3C Standard nor is it on the W3C Standards Track.
- ruthmarx 8 months agoIsn't Web Platform Incubator Community Group the group browsers makers formed because the W3C was being too slow and then largely overtook the W3C in terms of relevance?
- ruthmarx 8 months ago
- amiga386 8 months ago
- rzzzt 8 months agoEdge does have a "Copy link to highlight" option in its context menu.
- nashashmi 8 months agoAnd on mobile, it is called “create link”
- nashashmi 8 months ago
- jeroenhd 8 months agoThis feature seems to work on Firefox as far as I can tell. It used to be one of those Chrome APIs, but now every browser but Safari seems to support them completely. I'm sure the Safari team can quickly implement the last bit of Javascript API when they get the opportunity to.
- amiga386 8 months agoThe feature "seems to work on Firefox" if you're using the version of Firefox released 10 days ago [0]
It's not implemented in Firefox ESR and won't be until June 2025 [1]
- nanna 8 months agoWhich is to say, that it work on Firefox.
- nanna 8 months ago
- 8 months ago
- amiga386 8 months ago
- milliams 8 months agoIt works just fine on Firefox. The things that seems to be Chrome-only is the "select some text, right click to get direct link" bit, and the "link to text that is hidden".
- newswasboring 8 months ago> As for MS-Edge, well I guess it must be funny for Microsoft to see they're getting a taste of their own sweet old medicine...
Can you elaborate on this a bit?
- xp84 8 months agoI think GP mistakenly believes that Chrome implemented this in its proprietary part instead of getting it from Chromium which was the actual case. In reality I think the feature appeared in both browsers at roughly the same time as a result.
And also that they believe that adding features like this to browsers is bad behavior in the first place. If that were the case and people abided by the "do nothing until the W3C acts" rule we'd probably all be using IE6-level browsers still.
- reportgunner 8 months agoSomething with internet explorer but I'm not old enough to know what exactly.
- xp84 8 months ago
- arp242 8 months ago
- 8 months ago
- kwantaz 8 months agoCopy link to highlight is best feature.
- _giorgio_ 8 months agoCan you disable it in firefox?
shift+i -> "permissions" -> disable "override keyboard shortcuts"
- rafram 8 months agoHuh? This post isn’t about overriding Ctrl-F.
- rafram 8 months ago
- dakiol 8 months agoIs it just me or whenever I open a link with a text fragment, the page is loaded just fine but it takes one or two seconds to actually scroll down to the highlighted text?
Usually in Chrome and when visiting sites that are not 100% pure text (e.g., bloated Confluence docs)
- o1o1o1 8 months agoIt is very annoying, yes.
Because of this bloat in Confluence, we actually just use it for editing and serve the content in a more lightweight way using the API and our own templates.
- xp84 8 months agoYeah, even linking to a heading using its HTML ID (part of the pure HTML browser spec) was broken in Confluence for a while due to its fancy reimplementation of the concept of "serving a basic HTML document" in flashy React-y technologies. Though it works now.
- o1o1o1 8 months ago
- RedShift1 8 months agoSidenote: please don't hijack CTRL+F on webpages, thanks. Sincerely, the world.
- dspillett 8 months ago[for those just reading the comments having not read TFA: it isn't talking about changing default find behaviour within a page, but the feature to specify text to scroll to and highlight within a link URL so the user doesn't need to ctrl-F when you refer to a small part of a larger page]
- jeroenhd 8 months agoSometimes they "need" to, because rather than load 100kB of text, they'll chunk 100kB of text over ten JSON requests and searching requires backend intervention. If you make every web page an app, the browser doesn't work right anymore so you force yourself to build a browser within a browser!
- ants_everywhere 8 months agoCtrl-F should search the loaded page using the browser's search settings so that the user can have a consistent interface.
If sites choose not to load the page all at once they can provide another search bar with a different experience. But that's not the Ctrl-F search.
- 0xTJ 8 months agoEven if it's for that, it's infuriating, and a terrible pattern. Just as I expect CTRL+click to open in a new tab, there are some interactions that should be left alone; it's annoying to me that they even can be overridden.
- ants_everywhere 8 months ago
- throw101010 8 months agoSmall tip, and I know it doesn't make it much better, but in few cases I've seen this done (Discourse is the main culprit and it's widely used) pressing Ctrl+F a second time will go to the normal browser "Search in this page" function. Still annoying, but manageable.
- wkjagt 8 months agoInteresting that this is the top comment at the time I'm reading this, while the article isn't at all about hijacking CTRL+F.
- n_plus_1_acc 8 months agoThat's why it's prefaced with "sidenote"
- n_plus_1_acc 8 months ago
- amadeuspagel 8 months agoPlease don't hijack HN threads with unrelated gripes about the modern the web and please don't pretend to speak for the world.
- klabb3 8 months agoI have to agree.
Normally I think related side notes are fine. Heck, I’m guilty myself. But nowadays I always open the link first to make sure it's the right topic and to make sure it’s not addressed in the article. Often leads to a better response as well.
Yes, we know scroll-jacking or any other override of browser behavior is extremely disliked here.
- RedShift1 8 months agoUnrelated? CTRL+F is literally in the title...
- lolinder 8 months agoAnd only in the title. It doesn't mention the keyboard shortcut once in the body because it's not about keyboard shortcuts, it's about "linking directly to web page content".
In addition to unrelated gripes, it's generally considered bad practice to comment only based on the title.
- 8 months ago
- wkjagt 8 months agoIt is. But the article doesn't talk about hijacking its behaviour.
- lolinder 8 months ago
- klabb3 8 months ago
- TrianguloY 8 months agoI've seen that on pages with text editors that don't load all the text or where search is expanded with more features, like for example on Github.
In these cases I usually click outside the editor and then control+f works as usual.
If not, you can also try F3, and if that's hijacked too browsers usually have a shortcut to "find in page" in the hamburguer/three-dots menu
- klez 8 months agoAnd `/` neither, while you're at it (I'm looking at you, GitHub).
- SushiHippie 8 months agoThey have a (broken) setting under the accessibility settings which disables all the character key hijacking.
https://github.com/settings/accessibility
But for whatever reason this only seems to work temporarily (if it is already toggled off for you, you need to enable it again, save preferences, then toggle it off, and save preferences) and then it does not hijack '/' for a few minutes.
- klez 8 months agoBut even then I shouldn't need to do it for every website that does this.
- klez 8 months ago
- rty32 8 months agoFound the vimmer
- mmcdermott 8 months agoTrue, but `/` is also a shortcut for quick find in Firefox.
- Karellen 8 months agoOr just anyone who uses `more` or `less` or almost any other pager.
- klez 8 months agoIndeed :)
- mmcdermott 8 months ago
- SushiHippie 8 months ago
- arusahni 8 months agoHijacking CTRL+K sucks, too! It's the shortcut used to focus the browser search input in Firefox, but the industry has seemingly decided it's a great way to launch a command palette.
- egeozcan 8 months agoI recently implemented this, and the users loved it, though I was disappointed to hear it may have frustrated a usually silent group.
I'm open to feedback! What would be a better approach? Please don’t just suggest “no custom shortcuts for any web app”—people spend 60-70% of their workday using the UI components my team maintains. While random sites hijacking shortcuts is definitely frustrating, in our case, the pros seem to outweigh the cons.
Maybe allowing users to disable or customize shortcuts could be a solution? Or would that be over-engineering?
Honestly, I think the web platform could use a standard API for defining shortcuts, with browsers providing a UI to manage or disable them. Maybe I'm still over-engineering here.
Would really appreciate hearing others’ thoughts!
- arusahni 8 months ago> What would be a better approach?
I think Github handled this well by letting you choose between a few canned shortcuts, or disabling the feature altogether [1]. Since I seldom print, I opted to bind the command palette to "CTRL + P"
> Honestly, I think the web platform could use a standard API for defining shortcuts, with browsers providing a UI to manage or disable them. Maybe I'm still over-engineering here.
I'd agree with this sentiment. It's hard, but an obvious (IMO) pain point that has numerous sites reinventing the wheel and needing to introduce some state to save user preferences.
- lolinder 8 months ago> I was disappointed to hear it may have frustrated a usually silent group.
This group isn't usually silent (far from it), they're just not usually your users.
If you're building a web app a la Notion, Figma, Google Docs, Slack, or anything similar: just ignore the "the web should just be documents that strictly use the platform" complaints. Ensure you build in the required accessibility hooks (since those don't come natively to most custom work), but your users will thank you for accommodating their specific needs better than the platform does.
If you're building a web page that mostly presents information... yeah, maybe listen to the people here.
The main thing you're seeing here is that there's a subset of developers who haven't ever really liked the idea that the web became the primary means of deploying applications.
- cpmsmith 8 months agoThe "press again to fall back to the browser's key binding" solution many sites use for ^F isn't perfect, and won't work for all scenarios, but it definitely helps.
- pests 8 months ago> Honestly, I think the web platform could use a standard API for defining shortcuts, with browsers providing a UI to manage or disable them. Maybe I'm still over-engineering here.
I think this is really cool and would also allow some interesting features...
- Easier using random input devices. Game engines like Unity with their newest input manager abstracts everything away. Bind inputs not only to standard navigation actions but also app-defined shortcuts.
- Custom UI provided by the browser based on available shortcuts. PCs could get a quick actions bar and phones could have a shortcut drop-down menu exposing functionality.
- If there is an API for enabling/disabling shortcuts the browser can provide context-sensitive shortcut suggestions like some of the profession creation tools like Fusion360 [iirc] where available shortcuts are shown in the status bar.
- n_plus_1_acc 8 months agoMaybe you could find shortcuts that aren't used by major browsers. They should be documented somewhere.
- arusahni 8 months ago
- pythonlover2153 8 months agoCTRL+L works for that too on Chromium / Firefox.
- Sophira 8 months agoNot if you choose to have separate URL and search bars. In that case, Ctrl-L goes to the URL bar, and Ctrl-K goes to the search bar.
- Sophira 8 months ago
- egeozcan 8 months ago
- taco_emoji 8 months agoSometimes it's fine if a page is lazy-loading content, in which the browser's CTRL+F does not work because the text isn't all in the DOM at that moment.
- xp84 8 months agoMaybe this is a hot take then, but I think most sites I've seen that do this, are surprisingly good at doing their One Job correctly such that I haven't resented it the way I resent things like overridden context menus, links that are not really links, etc.
e.g. GitHub. If I'm on a source file and I hit Ctrl-F, yes, in fact I do want to search the source code and not GitHub's UI -- and their search bar for that purpose is delightfully simple and not distractingly different than the normal search I expected to see when I hit that key.
What would make me rage throw my computer through a window would be if I hit Ctrl-F and it loaded a full-screen modal which showed a search results page of result snippets or something. So I'm impressed with the restraint shown by the front-end developers (or their "UX designer" taskmasters) in this case.
- 8 months ago
- 8 months ago
- dspillett 8 months ago
- 8 months ago
- xp84 8 months agoThis also works perfectly in Microsoft Edge and has for a long time. Pointing this out because the post makes several references to things being exclusive to Chrome, when really it's probably just Chromium.
(I'm still puzzled why so many more people choose to use a browser distributed by the world's largest ad network over one with all the same features plus a few nice add-ons, made by a software company.)
- prettyStandard 8 months agoAll the nerds trained their friends and family on Chrome. We did it to ourselves.
- ttyprintk 8 months agoAs of a few years ago, independent tests of telemetry back to Bing, immutable hardware-derived identification, and add-on security of the Edge store were not good.
- xp84 8 months agoI guess I'm not convinced Microsoft is serious enough about monetizing my data and attention the way Google is. I'm assuming (generously, to be fair) that Microsoft mainly wants to optimize their software rather than use the data to maximize the effectiveness of their ad business, which seems hobby-level to me.
> immutable hardware-derived identification,
Is this in the telemetry data? Not in headers, right? Just curious to learn more
- ttyprintk 8 months agoThe 2020 report:
https://news.ycombinator.com/item?id=39181863
But the zeitgeist I’ve seen in 2024 is that Edge and Chrome collect the data they want, plus the data each other is collecting. Tabs, history, etc. Google appears to be more careful, speculatively because it would be easier to prove anti-trust if Google blocked Microsoft’s collecting.
- ttyprintk 8 months ago
- xp84 8 months ago
- prettyStandard 8 months ago