Summariser - ChatGPT Helper extension
Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from…
Summariser - ChatGPT Helper extension란 무엇입니까?
Summariser - ChatGPT Helper extension은(는) dmw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from…"입니다.
확장 프로그램 스크린샷
Summariser - ChatGPT Helper extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from any webpage and use them as many times as you like. Along with a growing set of tools ie built-in prompts - to turn your snippets into social media posts, twitter threads, blog articles, ideation, explanations and much more.
확장 프로그램 기본 정보
이름 | Summariser - ChatGPT Helper extension |
ID | ejdaenbfahhbcdolodmkklhihaefkgmn |
공식 URL | https://chromewebstore.google.com/detail/summariser-chatgpt-helper/ejdaenbfahhbcdolodmkklhihaefkgmn |
설명 | Summariser is a nifty little ChatGPT helper that will make your life 10x easier. It lets you quickly collect text snippets from… |
파일 크기 | 709 KB |
설치 횟수 | 130 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2023-02-19 |
출시 날짜 | 2023-02-14 |
개발자 | dmw |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Summariser - ChatGPT Helper extension", "version": "1.1.0", "permissions": [ "storage", "unlimitedStorage", "contextMenus" ], "action": { "default_title": "" }, "icons": { "128": "assets\/logo 128.png", "512": "assets\/logo 512.png" }, "background": { "service_worker": "build\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat\/*" ], "css": [ "build\/content-style-chatgpt.css", "build\/content-style-chatgpt-overrides.css" ], "js": [ "build\/content-script-chatgpt.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'" } } |