SummaryGPT

Summarize webpages using OpenAI's API

SummaryGPTとは何ですか?

SummaryGPTはsdmichaelyangによって開発されたChromeの拡張機能で、その主な機能は「Summarize webpages using OpenAI's API」です。

拡張機能のスクリーンショット

screenshot

SummaryGPT拡張機能のCRXファイルをダウンロード

SummaryGPT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        # 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
Eメール [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"
    }
}