ChatGPTx
Shortcut to ChatGPT to help you with your daily tasks
ChatGPTx란 무엇입니까?
ChatGPTx은(는) ph.becking에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shortcut to ChatGPT to help you with your daily tasks"입니다.
확장 프로그램 스크린샷
ChatGPTx 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Select something in your Chrome browser and use right-click to see the explanation of the selected phrase. Enjoy! Cheers, Jap and Piet Note: This is still the Beta version. Any feedback would be highly appreciated and can be submitted via the following link: https://sites.google.com/view/chatgptx/
확장 프로그램 기본 정보
이름 | ChatGPTx |
ID | bcekompknmefbgdhaionajkpcehbhkbk |
공식 URL | https://chromewebstore.google.com/detail/chatgptx/bcekompknmefbgdhaionajkpcehbhkbk |
설명 | Shortcut to ChatGPT to help you with your daily tasks |
파일 크기 | 17.68 KB |
설치 횟수 | 372 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2023-01-29 |
출시 날짜 | 2023-01-19 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | ph.becking |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPTx", "version": "0.1.1", "icons": { "16": "assets\/ext-icon.png", "32": "assets\/ext-icon.png", "48": "assets\/ext-icon.png", "128": "assets\/ext-icon.png" }, "description": "Shortcut to ChatGPT to help you with your daily tasks", "permissions": [ "storage", "contextMenus", "activeTab" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "ChatGPTx Extension", "default_popup": "popup.html" }, "manifest_version": 3 } |