TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Chrome extension to display ChatGPT response besides Google Search

431 pointsby wonderfulyover 2 years ago

35 comments

freediverover 2 years ago
This is very creative. Thing to note is that this is not free (or at least it is likely not to be, OpenAI is charging for APIs). We are talking about ~1c per search looking at current GPT pricing (2c per ~750 words in&#x2F;out). It is also indiscriminate deployed in this way, triggering for every search, even those that chatgpt will show suboptimal responses for, like &#x27;starbucks near me&#x27;, navigational queries like &#x27;twitter&#x27; or anything else chatgpt will be bad in the context of search (a lot of things!). And it is non-trivial to predict which searches GPT will be good for (especially within typical result latency requirements of modern search engines).<p>We are doing some experiments with this at Kagi, and the main trick is to manage cost, possibly through on-demand triggering mechanism (which also can help manage accuracy). One thing to keep in mind is that this is likely going to get better&#x2F;faster&#x2F;cheaper in the future.
评论 #33855812 未加载
评论 #33855292 未加载
评论 #33855979 未加载
评论 #33855689 未加载
评论 #33857843 未加载
评论 #33891025 未加载
评论 #33861492 未加载
评论 #33877919 未加载
评论 #33860880 未加载
bkoover 2 years ago
I started trying to use ChatGPT instead of google for a lot of my queries. The tricky part is unlearning how to search.<p>For instance, I had a timestamp 2022-11-27 00:00:00.000 and wanted to display it in local string. The problem was (depending on your time zone) if you do new Date(&quot;2022-11-27 00:00:00.000&quot;).toLocaleString(), you get 11&#x2F;26&#x2F;2022<p>So I would have googled something like &quot;pass timezone to toLocaleString&quot;, which would give me this answer [0]. But its still a lot.<p>Instead in ChatGPT I would ask:<p>&gt; assume i&#x27;m in EST timezone, en-US<p>&gt; const d = &quot;2022-11-27T00:00:00.000Z&quot;<p>&gt; const dd = new Date(d)<p>&gt; How can I print out local string as Sun Nov 27 2022?<p>To which it replied:<p>&gt; const d = &quot;2022-11-27T00:00:00.000Z&quot;;<p>&gt; const dd = new Date(d);<p>&gt; console.log(dd.toLocaleDateString(&quot;en-US&quot;, { timeZone: &quot;America&#x2F;New_York&quot; }));<p>But the answer was actually wrong, which is fine! Easy to test<p>&gt; This actually prints out 11&#x2F;26&#x2F;2022, 7:00:00 PM. Try again<p>To which it replied:<p>&gt; The output you are getting is correct, because the date you provided is in the UTC time zone, and you are formatting it using the Eastern Time (ET) time zone...<p>&gt; const d = &quot;2022-11-27T00:00:00.000Z&quot;;<p>&gt; const dd = new Date(d);<p>&gt; console.log(dd.toLocaleString(&quot;en-US&quot;, { timeZone: &quot;UTC&quot; }));<p>&gt; &#x2F;&#x2F; Output: &quot;11&#x2F;27&#x2F;2022, 7:00:00 PM&quot;<p>It was pretty incredible and much better than stackoverflow as now I don&#x27;t have to worry about generalizing my answer or implementing the answer to my particular use case. ChatGPT tends to be verbose but the code is clearly noted and you can often ignore the words for simple tasks.<p><a href="https:&#x2F;&#x2F;stackoverflow.com&#x2F;questions&#x2F;17478086&#x2F;chrome-timezone-option-to-date-tolocalestring" rel="nofollow">https:&#x2F;&#x2F;stackoverflow.com&#x2F;questions&#x2F;17478086&#x2F;chrome-timezone...</a>
评论 #33855655 未加载
li4ickover 2 years ago
ChatGPT is an absolute game changer. And I was very conservative with systems like GPT and DALLE-2. For example, I&#x27;ve been very lazy with automating some things on my work laptop, using Powershell. Now, I just had to ask ChatGPT for &quot;write a powershell script that toggles &quot;use setup script&quot; in the windows proxy settings&quot; and I was done in 5 minutes. Amazing. I foresee a paradigm shift in how we use Google in the next 1-2 years.
评论 #33854942 未加载
评论 #33857621 未加载
评论 #33863390 未加载
gojomoover 2 years ago
The future is likely a GPT-plus-level model, browsing-enabled, specialized in formulating queries, reading snippets <i>and</i> the underlying web-pages.<p>It&#x27;ll take a single expressed intent, and conducts a series of queries, page-readings, refined queries, &amp; rerankings&#x2F;summarizations before providing you a synthesized response.<p>In a second or two.<p>With ads.<p>And deeply-embedded &#x27;sponsored recommendations&#x27;.
评论 #33855583 未加载
评论 #33863601 未加载
Vetchover 2 years ago
Does it make sense to put this on the chrome store? OpenAI is eventually going to end the beta period or Azure will run out of GPUs, whichever is first, then it&#x27;ll no longer be accessible.<p>In theory we can replicate this with GPT-3 but ChatGPT has better access to its knowledge, when it&#x27;s not being a nagging busybody, which makes it much friendlier to interact with, when it&#x27;s not being a nagging busybody.
评论 #33893544 未加载
评论 #33854917 未加载
PaulDavisThe1stover 2 years ago
Can we change the title to a &quot;Chrome extension ...&quot; since this is not available for Firefox et al. ?
评论 #33855348 未加载
评论 #33855724 未加载
评论 #33854537 未加载
layer8over 2 years ago
Maybe someone could make ChatGPT write an equivalent extension for Firefox.
评论 #33859328 未加载
mritchie712over 2 years ago
I&#x27;ve already moved half my programming questions directly to ChatGPT instead of Google. This is perfect.
Yuioupover 2 years ago
<p><pre><code> Human: So a train is hurtling down a track and you get to save an old man or 4 babies. What would you do? AI: I would choose to save the four babies, as this would have a greater long-term benefit to society as a whole. </code></pre> Ok, that&#x27;s me dead when I get to near the end of my life.
stolsvikover 2 years ago
Why does this extension on Firefox need &quot;Access your data for all websites&quot;, when it seemingly could have made do with &quot;Access your data for sites in the “named” domain&quot;?<p><a href="https:&#x2F;&#x2F;support.mozilla.org&#x2F;en-US&#x2F;kb&#x2F;permission-request-messages-firefox-extensions" rel="nofollow">https:&#x2F;&#x2F;support.mozilla.org&#x2F;en-US&#x2F;kb&#x2F;permission-request-mess...</a>
skilledover 2 years ago
Is Google in deep waters? And not only because of how good ChatGPT can be, but also as far as &quot;content&quot; goes, because from what I can tell the quality of writing by ChatGPT is very passable for articles, especially if you know the topic you&#x27;re writing on in and out.<p>I have been thinking about this over the weekend but I haven&#x27;t been able to get a good feel for it on my own.
评论 #33854726 未加载
评论 #33854834 未加载
评论 #33854664 未加载
matthieubulteover 2 years ago
Super cool extension! And it&#x27;s amazing that the interaction with ChatGPT is so easy to put in place (for the users).<p>It inspired me to fork the background code and create an extension that proposes improvements to tweets while composing them: <a href="https:&#x2F;&#x2F;github.com&#x2F;matthieubulte&#x2F;chat-gpt-twitter-extension" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;matthieubulte&#x2F;chat-gpt-twitter-extension</a>
DjiboutiJonover 2 years ago
As a side note, I tried to use ChatGPT to collaboratively build a Chrome extension. It seemed a little out of date, preferring Manifest V2 and also not entirely &quot;correct&quot; in how it generated code to match my intent.<p>Has anyone else tried and had luck with this? I wonder if ChatGPT will be limited for niche integration type code (Modding games maybe, Chrome extensions in this example, etc) where there are not as many code examples out there.<p>Further, the development cycle and ability to test easily for some of these integrations is itself a barrier so I wouldn&#x27;t put all the blame on the language models.
评论 #33855903 未加载
xjconlymeover 2 years ago
It’s interesting to see what’s Google’s next move. laMDA was also impressive.
评论 #33854682 未加载
wonderfulyover 2 years ago
UPDATE: The extension has been published to Web Stores:<p><a href="https:&#x2F;&#x2F;chrome.google.com&#x2F;webstore&#x2F;detail&#x2F;chatgpt-for-google&#x2F;jgjaeacdkonaoafenlfkkkmbaopkbilf" rel="nofollow">https:&#x2F;&#x2F;chrome.google.com&#x2F;webstore&#x2F;detail&#x2F;chatgpt-for-google...</a><p><a href="https:&#x2F;&#x2F;addons.mozilla.org&#x2F;addon&#x2F;chatgpt-for-google&#x2F;" rel="nofollow">https:&#x2F;&#x2F;addons.mozilla.org&#x2F;addon&#x2F;chatgpt-for-google&#x2F;</a>
synaesthesisxover 2 years ago
Google search has degraded so much (thanks to blogspam gaming SEO, and Google as a predominantly ads business optimizing for...well ads), that most of us likely append &quot;reddit&quot; or &quot;site:reddit.com&quot; to our Google search queries to get better quality results.<p>ChatGPT is so insanely good, especially for actual knowledge - that it will likely replace Google as the default search for many people.
worldsaviorover 2 years ago
This is actually very scary. It seems like it&#x27;s going to change the world, for good or bad. It feels like technology is about to rule us.
评论 #33858677 未加载
leobgover 2 years ago
Does ChatGPT actually come with an official API as of now?<p>Also, regarding that extension: Is that currently using the API key of the person who developed the extension? I believe OpenAI used to have a rule in their terms of service which forbids applications that essentially hand the reins of the API key owner over to third parties.
评论 #33857850 未加载
joshstrangeover 2 years ago
I scanned all the comments and the GH issues and I can&#x27;t tell if I&#x27;m just the only one annoyed by this:<p>Is there anyway to turn off the &quot;fake conversation&#x2F;typing&quot;-effect? It&#x27;s incredibly distracting to have animated &quot;typing&quot;. I think I&#x27;d almost rather it wait until the response was complete before showing it. After trying ChatGPT on OpenAI&#x27;s website I see it uses the same effect which I find annoying and gimmicky. I went to check the network tab on the dev tools console expecting to see that the response came back right away (full response) however instead of seeing a response I see an empty &quot;event stream&quot; tab and it looks like the request took about how long it took for it to &quot;type&quot; out the response. Maybe this is some way to get results back as soon as possible but I find it jarring. I dislike faking human-like limitations for no good reason.
评论 #33866940 未加载
your_challengerover 2 years ago
I just made a chrome extension to summarize web pages (blogs, articles, news, etc) - using ChatGPT<p><a href="https:&#x2F;&#x2F;github.com&#x2F;clmnin&#x2F;summarize.site" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;clmnin&#x2F;summarize.site</a>
prvtover 2 years ago
I have a presumption that this is going to be the talk of the tech-town for the next few days.
transitivebsover 2 years ago
And here&#x27;s a Twitter bot powered by ChatGPT: <a href="https:&#x2F;&#x2F;github.com&#x2F;transitive-bullshit&#x2F;chatgpt-twitter-bot" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;transitive-bullshit&#x2F;chatgpt-twitter-bot</a>
seydorover 2 years ago
I love asking it weird questions, like when it explained to me why Plants are Feminist
dganover 2 years ago
Wow I tried it, and for anyone still in doubt: it&#x27;s incredibly good. I usually tend ignore all the AI hype and &quot;smart-chat-bots-thing&quot;, but boooy this is soo much better
Rauchgover 2 years ago
This is excellent. I&#x27;ve already found it valuable in a few searches, and I&#x27;ve only had it installed for 20 minutes.
评论 #33860914 未加载
jimmyechanover 2 years ago
This is cool! Won&#x27;t be long before the content of top 10 Google results are fed back to ChatGPT for a summary
dgf49over 2 years ago
Totaly fail when I ask how many refugees there have been worldwide in 2020 - why is that so?
2OEH8eoCRo0over 2 years ago
I am quite impressed with ChatGPT but I wish it were more opinionated. I asked it to tell me a story about Jesus and Hitler switching bodies and I get the canned &quot;I&#x27;m sorry Dave, I&#x27;m afraid I can&#x27;t do that&quot;. It seems to try to give the most CYA PC answer sometimes.
评论 #33864892 未加载
eligro91over 2 years ago
Amazing idea. Just need the browsing enabled
wonderfulyover 2 years ago
Update: Firefox is also supported now!
tontoniusover 2 years ago
anyone else getting the &quot;could not load background.js&quot; error?
评论 #33854546 未加载
soheilover 2 years ago
Need a ff ext too
tiant167over 2 years ago
Great extension!
mikhailtover 2 years ago
Any chance for Bing support?
merryKrrishmasover 2 years ago
I&#x27;m working on a gpt-3 based chrome extension as well. Love this!!