SummaryGPT

Summarize webpages using OpenAI's API

SummaryGPT क्या है?

SummaryGPT sdmichaelyang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Summarize webpages using OpenAI's API"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SummaryGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}