SummaryGPT

Summarize webpages using OpenAI's API

O que é SummaryGPT?

SummaryGPT é uma extensão do Chrome desenvolvida por sdmichaelyang, e sua principal característica é "Summarize webpages using OpenAI's API".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SummaryGPT

Baixe arquivos de extensão SummaryGPT no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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                    

Informações Básicas da Extensão

Nome SummaryGPT SummaryGPT
ID mempbkfiiiadnkjbnadmickcipmccepg
URL Oficial https://chromewebstore.google.com/detail/summarygpt/mempbkfiiiadnkjbnadmickcipmccepg
Descrição Summarize webpages using OpenAI's API
Tamanho do Arquivo 18.59 KB
Contagem de Instalações 32
Versão Atual 1.0
Última Atualização 2023-05-21
Data de Publicação 2023-05-20
Desenvolvedor sdmichaelyang
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/michaelcreatesstuff/chrome-extension-gpt-boilerplate
URL da Página de Ajuda https://github.com/michaelcreatesstuff/chrome-extension-gpt-boilerplate
Idiomas Suportados 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"
    }
}