SummarizeIt

Summarize any webpage with GPT-3 API.

O que é SummarizeIt?

SummarizeIt é uma extensão do Chrome desenvolvida por 0xasten, e sua principal característica é "Summarize any webpage with GPT-3 API.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão SummarizeIt

Baixe arquivos de extensão SummarizeIt 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

                        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.                    

Informações Básicas da Extensão

Nome SummarizeIt SummarizeIt
ID dpnomnajbhmkdinnklciapkgcacihmnl
URL Oficial https://chromewebstore.google.com/detail/summarizeit/dpnomnajbhmkdinnklciapkgcacihmnl
Descrição Summarize any webpage with GPT-3 API.
Tamanho do Arquivo 2.71 MB
Contagem de Instalações 95
Versão Atual 2.0
Última Atualização 2023-06-15
Data de Publicação 2023-02-27
Desenvolvedor 0xasten
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://sites.google.com/view/0xasten-privacy-policy
Idiomas Suportados 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"
    }
}