Phantom: Lofi Tutor
Introducing an all-in-one application featuring Microsoft Bing and Google Bard, accessible across various webpages
Phantom: Lofi Tutor란 무엇입니까?
Phantom: Lofi Tutor은(는) https://lofitutor.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Introducing an all-in-one application featuring Microsoft Bing and Google Bard, accessible across various webpages"입니다.
확장 프로그램 스크린샷
Phantom: Lofi Tutor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Are you tired of writing your blog article, news article, or Youtube script? Don't worry, you can use this extension to write articles on any topic! _______________________________ HOW TO USE 1) Install this extension and open ChatGPT page 2) Toggle the blue icon to set "Phantom Mode" 3) Enter the topic you want to generate _________________ PRIVACY POLICY There are no ads, analytics, trackers, or cookies in the ChatGPT Phantom Extension. It also does not collect any user data; the only information shared with the AI model (chat.openai.com) is the prompts and context you provide to generate a response.
확장 프로그램 기본 정보
이름 | Phantom: Lofi Tutor |
ID | ofkgndjljeccdgmehefcijojnaagopbn |
공식 URL | https://chromewebstore.google.com/detail/phantom-lofi-tutor/ofkgndjljeccdgmehefcijojnaagopbn |
설명 | Introducing an all-in-one application featuring Microsoft Bing and Google Bard, accessible across various webpages |
파일 크기 | 703 KB |
설치 횟수 | 3,147 |
현재 버전 | 4.2.5 |
최근 업데이트 | 2023-07-25 |
출시 날짜 | 2023-01-24 |
평점 | 4.40/5 총 42 개의 평점 |
개발자 | https://lofitutor.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://chatgpt-phantom.vercel.app/ |
도움말 페이지 URL | https://www.buymeacoffee.com/phantom.writer |
개인정보 보호 정책 페이지 URL | https://www.privacypolicies.com/live/45f54ea1-8125-42d2-82f1-be4988a72673 |
지원되는 언어 | de,en,en-GB,en-US,fr,nl,no,da,es,es-419,it,pl,pt-BR,pt-PT,sv,ru,hi,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "4.2.5", "name": "__MSG_APPNAME__", "description": "__MSG_APPDESC__", "default_locale": "en_US", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": [], "background": { "service_worker": "build\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "build\/content.js" ], "css": [ "build\/content.css" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "build\/chatgpt.js" ] } ], "permissions": [ "storage", "tabs", "activeTab" ], "host_permissions": [ "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "index.html" ], "matches": [ "https:\/\/*\/*" ] } ], "commands": { "toggle-sidebar": { "suggested_key": { "default": "Alt + Shift + K", "mac": "Command + Shift + K" }, "description": "Open or close the sidebar" } } } |