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
官方網址 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"
    }
}