GPTx
ChatGPT-powered Chrome Extension, Elevates Browsing Experience and Productivity.
GPTx란 무엇입니까?
GPTx은(는) sarveshkapre에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ChatGPT-powered Chrome Extension, Elevates Browsing Experience and Productivity."입니다.
확장 프로그램 스크린샷
GPTx 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Introducing GPTX - the powerful Chrome Extension - that leverages ChatGPT to elevate your browsing experience and make daily tasks effortless. GPT-generated results can improve search accuracy, efficiency, user experience, creativity, accessibility, trust and credibility, and convenience. The use of GPT-generated results alongside traditional Google results can provide several benefits. Showing both types of results can increase the accuracy and relevance of the information presented to the user, as the GPT-generated results can provide additional context and information that may not be present in the traditional results. This can also improve the efficiency of the search, allowing users to find the information they need faster. Including GPT-generated results can also enhance the user experience by adding diversity and novelty to the search results. This can make the search process more engaging and enjoyable for the user. The GPT-generated results can also provide users with new ideas and perspectives, fostering creativity and inspiration. Additionally, the inclusion of GPT-generated results can increase the accessibility of the search experience, as they can provide information and context that may not be easily accessible through traditional results. This can make the search experience more inclusive for users with different needs and abilities. Showing GPT-generated results alongside traditional results can also increase trust and credibility in the information presented, as it provides users with a more comprehensive picture of the information they are seeking. Finally, the GPT-generated results can provide users with quick and easy access to additional information, increasing the convenience of the search experience.
확장 프로그램 기본 정보
이름 | GPTx |
ID | ljmohcbobmmelbiijhpigdmmoboabjcl |
공식 URL | https://chromewebstore.google.com/detail/gptx/ljmohcbobmmelbiijhpigdmmoboabjcl |
설명 | ChatGPT-powered Chrome Extension, Elevates Browsing Experience and Productivity. |
파일 크기 | 291 KB |
설치 횟수 | 1,905 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2022-12-16 |
출시 날짜 | 2022-12-11 |
평점 | 3.80/5 총 5 개의 평점 |
개발자 | sarveshkapre |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sarveshkapre/gptx |
도움말 페이지 URL | https://github.com/sarveshkapre/gptx/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPTx", "version": "1.3.0", "description": "ChatGPT-powered Chrome Extension, Elevates Browsing Experience and Productivity.", "action": { "default_icon": "icon19.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "host_permissions": [ "https:\/\/*.openai.com\/" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/search*" ], "include_globs": [ "*.google.*\/*" ], "js": [ "content-script.js" ], "css": [ "bootstrap.min.css", "github-markdown.css", "result-card.css" ] }, { "matches": [ "https:\/\/chat.openai.com\/chat" ], "js": [ "chatgpt-script.js" ] } ] } |