SummaryGPT

Summarize webpages using OpenAI's API

SummaryGPTคืออะไร?

SummaryGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sdmichaelyang และคุณลักษณะหลักของมันคือ "Summarize webpages using OpenAI's API"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SummaryGPT

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}