SummarizeIt
Summarize any webpage with GPT-3 API.
SummarizeIt란 무엇입니까?
SummarizeIt은(는) 0xasten에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Summarize any webpage with GPT-3 API."입니다.
확장 프로그램 스크린샷
SummarizeIt 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Summarize is a powerful and easy-to-use Chrome extension that lets you quickly obtain a summary of content. Powered by advanced natural language processing technology, Summarize uses GPT-3 API to generate accurate and concise summaries of the most important information, so you can get the gist of it in seconds.
확장 프로그램 기본 정보
이름 | SummarizeIt |
ID | dpnomnajbhmkdinnklciapkgcacihmnl |
공식 URL | https://chromewebstore.google.com/detail/summarizeit/dpnomnajbhmkdinnklciapkgcacihmnl |
설명 | Summarize any webpage with GPT-3 API. |
파일 크기 | 2.71 MB |
설치 횟수 | 95 |
현재 버전 | 2.0 |
최근 업데이트 | 2023-06-15 |
출시 날짜 | 2023-02-27 |
개발자 | 0xasten |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://sites.google.com/view/0xasten-privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SummarizeIt", "version": "2.0", "description": "Summarize any webpage with GPT-3 API.", "icons": { "16": ".\/img\/icons\/icon16.png", "32": ".\/img\/icons\/icon32.png", "48": ".\/img\/icons\/icon48.png", "128": ".\/img\/icons\/icon128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js", "content_selection.js" ] } ], "action": { "default_icon": ".\/img\/icons\/icon32.png", "default_title": "Summarize Extension", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" } } |