SummarizeIt

Summarize any webpage with GPT-3 API.

Vad är SummarizeIt?

SummarizeIt är en Chrome-tillägg utvecklad av 0xasten, och dess huvudfunktion är "Summarize any webpage with GPT-3 API.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner SummarizeIt-förlängningens CRX-fil

Ladda ner SummarizeIt-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Summarize is a powerful and easy-to-use Chrome extension that lets you quickly obtain a summary of content. Powered by advanced natural language processing technology, Summarize uses GPT-3 API to generate accurate and concise summaries of the most important information, so you can get the gist of it in seconds.                    

Grundläggande Information om Tillägg

Namn SummarizeIt SummarizeIt
ID dpnomnajbhmkdinnklciapkgcacihmnl
Officiell webbadress https://chromewebstore.google.com/detail/summarizeit/dpnomnajbhmkdinnklciapkgcacihmnl
Beskrivning Summarize any webpage with GPT-3 API.
Filstorlek 2.71 MB
Antal Installationer 95
Aktuell Version 2.0
Senast Uppdaterad 2023-06-15
Publiceringsdatum 2023-02-27
Utvecklare 0xasten
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://sites.google.com/view/0xasten-privacy-policy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SummarizeIt",
    "version": "2.0",
    "description": "Summarize any webpage with GPT-3 API.",
    "icons": {
        "16": ".\/img\/icons\/icon16.png",
        "32": ".\/img\/icons\/icon32.png",
        "48": ".\/img\/icons\/icon48.png",
        "128": ".\/img\/icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js",
                "content_selection.js"
            ]
        }
    ],
    "action": {
        "default_icon": ".\/img\/icons\/icon32.png",
        "default_title": "Summarize Extension",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    }
}