GPT Search Helper
A plugin that augments Google and Stackoverflow search results with ChatGPT responses.
GPT Search Helper란 무엇입니까?
GPT Search Helper은(는) preetshihn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A plugin that augments Google and Stackoverflow search results with ChatGPT responses."입니다.
확장 프로그램 스크린샷
GPT Search Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When you search for something on Google or Stackoverflow, this extension will try to augment the results with the response from OpenAI's ChatGPT. You must have the ChatGPT bot open in a tab (https://chat.openai.com/chat). This extension will ask the bot the searched query in that chat tab, and pipe the results into your Google and Stackoverflow search results. By default, the extension only sends the query to ChatGPT window when you open the sidebar by clicking on the 🤖 button. But you can change the extension settings to automatically trigger ChatGPT search. Note that if set to automatic, you may inadvertently reach limits to your free ChatGPT usage.
확장 프로그램 기본 정보
이름 | GPT Search Helper |
ID | lefofhdldjphdggnbigcgdbbdllfbgfc |
공식 URL | https://chromewebstore.google.com/detail/gpt-search-helper/lefofhdldjphdggnbigcgdbbdllfbgfc |
설명 | A plugin that augments Google and Stackoverflow search results with ChatGPT responses. |
파일 크기 | 38.74 KB |
설치 횟수 | 167 |
현재 버전 | 0.2 |
최근 업데이트 | 2022-12-14 |
출시 날짜 | 2022-12-14 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | preetshihn |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPT Search Helper", "version": "0.2", "description": "A plugin that augments Google and Stackoverflow search results with ChatGPT responses.", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "webNavigation", "storage" ], "background": { "service_worker": "lib\/background.js" }, "options_page": "options.html", "content_scripts": [ { "js": [ "lib\/chat-content.js" ], "matches": [ "https:\/\/chat.openai.com\/chat\/", "https:\/\/chat.openai.com\/chat\/*" ] }, { "js": [ "lib\/google-content.js" ], "matches": [ "https:\/\/www.google.com\/search?*", "https:\/\/www.google.ca\/search?*", "https:\/\/www.google.dk\/search?*", "https:\/\/www.google.de\/search?*", "https:\/\/www.google.de\/search?*", "https:\/\/www.google.com.au\/search?*", "https:\/\/www.google.co.uk\/search?*", "https:\/\/www.google.co.nz\/search?*", "https:\/\/stackoverflow.com\/search?*" ] } ] } |