ChatGPT in Google
ChatGPTinGoogle is an extension that is designed to enhance your Google search experience by integrating ChatGPT developer APIs.
ChatGPT in Google란 무엇입니까?
ChatGPT in Google은(는) hello에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ChatGPTinGoogle is an extension that is designed to enhance your Google search experience by integrating ChatGPT developer APIs."입니다.
확장 프로그램 스크린샷
ChatGPT in Google 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This powerful tool functions by providing you with both the regular Google search results, as well as the response from ChatGPT. With ChatGPTinGoogle, you can easily access the extensive knowledge base and advanced algorithms of ChatGPT, all within the same search window as Google. This enables you to quickly and conveniently obtain additional insights, explanations, or answers to your queries, without having to navigate away from your Google search results. Whether you are a student, a professional, or simply someone seeking to expand your knowledge, ChatGPTinGoogle is a valuable tool that can help you find the information you need with ease and efficiency. By bringing together the power of Google and ChatGPT, ChatGPTinGoogle has the potential to transform the way you search for information online, and enable you to access a wealth of knowledge at your fingertips.
확장 프로그램 기본 정보
이름 | ChatGPT in Google |
ID | gmkgjhlphncdlagnlkideonkiagkogjc |
공식 URL | https://chromewebstore.google.com/detail/chatgpt-in-google/gmkgjhlphncdlagnlkideonkiagkogjc |
설명 | ChatGPTinGoogle is an extension that is designed to enhance your Google search experience by integrating ChatGPT developer APIs. |
파일 크기 | 549 KB |
설치 횟수 | 1,000 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2023-04-07 |
출시 날짜 | 2023-03-31 |
평점 | 5.00/5 총 8 개의 평점 |
개발자 | hello |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://chatgptingoogle.com/ |
개인정보 보호 정책 페이지 URL | https://neptuneshot.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT in Google", "description": "ChatGPTinGoogle is an extension that is designed to enhance your Google search experience by integrating ChatGPT developer APIs.", "version": "1.0.2", "manifest_version": 3, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "*:\/\/www.google.com\/*" ], "icons": { "256": "src\/img\/logo256.png", "128": "src\/img\/logo128.png", "64": "src\/img\/logo64.png", "32": "src\/img\/logo32.png", "20": "src\/img\/logo20.png", "16": "src\/img\/logo16.png" }, "action": { "default_popup": "popup.html", "default_icon": "src\/img\/logo128.png" }, "content_scripts": [ { "js": [ "\/dist\/index.js" ], "matches": [ "*:\/\/www.google.com\/*" ], "css": [ "\/src\/App.css" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; default-src 'self'; style-src-elem 'self' https:\/\/fonts.googleapis.com\/* 'unsafe-inline' 'unsafe-eval'; style-src 'self' https:\/\/fonts.googleapis.com\/* 'unsafe-inline' 'unsafe-eval'; font-src 'self' https:\/\/fonts.gstatic.com\/* data: fonts.gstatic.com 'unsafe-inline'; connect-src 'self' https:\/\/*.googleapis.com http:\/\/chatgptingoogle-lb-132477774.us-east-1.elb.amazonaws.com;" }, "web_accessible_resources": [ { "resources": [ "src\/App.css", "src\/img\/logo16.svg", "src\/img\/logo20.svg", "src\/img\/logo32.svg", "src\/img\/logo64.svg", "src\/img\/logo128.svg", "src\/img\/logo256.svg" ], "matches": [ "*:\/\/www.google.com\/*" ] } ], "background": { "service_worker": "bgServiceWorker.js", "type": "module" } } |