Earlier quoted context omitted.
Extensions can steal data. https://www.pcmag.com/news/uninstall-now-these-chrome-browse... It's irresponsible for OpenAI to let this issue be solved by extensions.
Not if you actually read what the extension does and drag and drop it into chrome yourself. Don't install from the web store. Those ones can auto-update.
ChatGPT conversations still lack timestamps after years of requests
111–120 of 171 posts
Re: ChatGPT conversations still lack timestamps after years of requests
#112If you download a Data export, the timestamps are there for every conversation, and often for messages as well. The html file is just a big JSON with some JS rendering, so I wrote this bash script which adds the timestamp before the conversation title: sed -i 's|" " + conversation.title + " "|" " + new Date(conversation.create_time*1000).toISOString().slice(0, 10) + " @ " + conversation.title + " "|' chat.html
Do you know if this is available in the actual web interface, and just not displayed, or is it just in the data export? If it is in the web, maybe a browser extension would be worth making.
Look for this API call in Dev Tools: https://chatgpt.com/backend-api/conversation/
Re: ChatGPT conversations still lack timestamps after years of requests
#113ChatGPT still does not display per-message timestamps (time of day / date) in conversations. This has been requested consistently since early 2023 on the OpenAI community forum, with hundreds of comments and upvotes and deleted threads, yet remains unimplemented. Do any of you could think of a reason (UX-wise) for it not to be displayed?
Regular people hate numbers. Not a joke. To capture a wide audience you want to avoid numbers, among other technical niceties.
Re: ChatGPT conversations still lack timestamps after years of requests
#114Re: ChatGPT conversations still lack timestamps after years of requests
#115Re: ChatGPT conversations still lack timestamps after years of requests
#116Earlier quoted context omitted.
What purpose does logging your lifting with chatgpt achieve?
presumably the same thing that logging anything with an LLM achieves : plain language into structured text quickly.
Re: ChatGPT conversations still lack timestamps after years of requests
#117Earlier quoted context omitted.
Isn't it just simpler to believe that ChatGPT doesn't have timestamps because... they never added them? It wasn't in the original MVP prototype and they've just never gotten around to it? Surely there's enough people working in product development here to recognise this pattern of never getting around to fixing low-hanging fruit in a product.
They exist in the exported data. It'd require a weekend's worth of effort to roll out a new feature that gives users a toggle to turn timestamps off and on. It's trivial, but we will never see it. The people in charge of UX/UI don't care about what users say they want, they all know better.
Re: ChatGPT conversations still lack timestamps after years of requests
#118Other than the potential liability, cost may also be a factor. Back in April 2025, Altman mentioned people saying "thank you" was adding “tens of millions of dollars” to their infra costs. Wondering if adding per-message timestamps would cost even more.
this is actually hilarious, also easily fixable if they just respond to that with a pre-determined if response == 'thank you': print('your welcome')
Re: ChatGPT conversations still lack timestamps after years of requests
#119If you download a Data export, the timestamps are there for every conversation, and often for messages as well. The html file is just a big JSON with some JS rendering, so I wrote this bash script which adds the timestamp before the conversation title: sed -i 's|" " + conversation.title + " "|" " + new Date(conversation.create_time*1000).toISOString().slice(0, 10) + " @ " + conversation.title + " "|' chat.html
It uses the pagefind project so it can be hosted on a static host, and I made a fork of pagefind which encrypts the indexes so you can host your private chats wherever and it will be encrypted at rest and decrypted client-side in the browser.
(You still have to trust the server as the html itself can be modified, but at least your data is encrypted at rest.)
One of the goals is to allow me to delete all my data from chatgpt and claude regularly while still having a private searchable history.
It's early but the basics work, and it can handle both chatgpt and claude (which is another benefit as I don't always remember where I had something).