SummaryGPT

Summarize webpages using OpenAI's API

SummaryGPT란 무엇입니까?

SummaryGPT은(는) sdmichaelyang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Summarize webpages using OpenAI's API"입니다.

확장 프로그램 스크린샷

screenshot

SummaryGPT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        # SummaryGPT Chrome Extension

SummaryGPT is an open-source Chrome extension that allows you to summarize webpages using OpenAI's API. This powerful tool helps you quickly understand the main points of any webpage without having to read through the entire content.

## Features

- Summarize webpages with just one click
- Utilizes OpenAI's powerful GPT model for generating summaries
- Easy to use and integrate into your daily browsing experience

## Usage

To use the SummaryGPT Chrome extension, follow these steps:

1. Navigate to the webpage you want to summarize.

2. Click on the SummaryGPT icon in the Chrome toolbar.

3. The extension will process the webpage and generate a summary using OpenAI's API.

4. A popup will appear displaying the summary of the webpage.

5. Read the summary and enjoy a more efficient browsing experience!

Source code:
https://github.com/michaelcreatesstuff/chrome-extension-gpt-boilerplate                    

확장 프로그램 기본 정보

이름 SummaryGPT SummaryGPT
ID mempbkfiiiadnkjbnadmickcipmccepg
공식 URL https://chromewebstore.google.com/detail/summarygpt/mempbkfiiiadnkjbnadmickcipmccepg
설명 Summarize webpages using OpenAI's API
파일 크기 18.59 KB
설치 횟수 32
현재 버전 1.0
최근 업데이트 2023-05-21
출시 날짜 2023-05-20
개발자 sdmichaelyang
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/michaelcreatesstuff/chrome-extension-gpt-boilerplate
도움말 페이지 URL https://github.com/michaelcreatesstuff/chrome-extension-gpt-boilerplate
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SummaryGPT",
    "version": "1.0",
    "description": "Summarize webpages using OpenAI's API",
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "SummaryGPT"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html"
    }
}