AI Summarizer

ChatGPT-3.5 powered tool to summarize any website you are at

¿Qué es AI Summarizer?

AI Summarizer es una extensión de Chrome desarrollada por xifre, y su función principal es "ChatGPT-3.5 powered tool to summarize any website you are at".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AI Summarizer

Descarga archivos de extensión AI Summarizer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Summarize any page you are at with the help of ChatGPT-3.5! All with a free and open source project :)

Click on the extension's icon, define how you want the summary done and start summarizing.

You can use a free demo API Key that allows several queries. If you'd like to do many more queries, please provide your own ChatGPT Key (for free), by simply clicking "Add tokens" and inserting your API Key. It's very easy to get from the openai website.

*FEATURES*

- Summarize only the selected text
If you have any selected text, the extension will work only on that fragment. Ideal if you don't need the entire page and you don't want to use too many API tokens.

- Set the summary length
You can set it in words or in characters. As of now it's not 100% accurate (it may be some words/characters off), but it'll try its best to adjust to the required length. If you want the summary in bullet points (read below), the length limiter won't work, as it requires a different query engineering that is not ready yet.

- Set keywords
You can ask the AI to focus on specific topics when summarizing. If you are reading, for example, someone's biography, you can make it focus in the political career of that someone. Simply introduce a keyword in the keywords field and press enter or click "Add".

- Summarize en bullet points
You can summarize the page in a regular text format or in bullet points.

- Use your own FREE API Key
You can click at the top side "Add tokens (free)" and then you'll be able to introduce your own API Key from chatGPT. It only requires you to set an account with openai and then you can create a free key. The key is limited but allows quite a broad number of requests.

OPEN SOURCE AND DATA PRIVACY

This project is only "semi" open source because some files could pose security concerns and allow exploits of the public API Key.

There are actually not many files hidden so the code is perfectly understandable without them.

- About privacy:
This extension DOES NOT use your data in any way.

It doesn't even have access to it. The only data it uses is your API Key, if you voluntarily decide to introduce it. And its use is only for its intended purpose, nothing else. You can actually verify by yourself everything stated here, by reading the code and by inspecting the extension's network (you'll see that the only request done is to chatGPT).

DISCLAIMER

This extension is currently in its first release so it may have unexpected bugs that still require some work on. Please, feel free to contribute to this repository if there's anything you believe it could be improved.

GITHUB REPOSITORY
https://github.com/xfontr/chat-gpt-ai-summarizer                    

Información Básica de la Extensión

Nombre AI Summarizer AI Summarizer
ID bhpbalbjambphcgchfpdohafcbdjkgno
URL Oficial https://chromewebstore.google.com/detail/ai-summarizer/bhpbalbjambphcgchfpdohafcbdjkgno
Descripción ChatGPT-3.5 powered tool to summarize any website you are at
Tamaño del Archivo 30.05 KB
Cantidad de Instalaciones 595
Versión Actual 0.0.0.1
Última Actualización 2023-04-17
Fecha de Publicación 2023-04-16
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador xifre
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/xfontr/chat-gpt-ai-summarizer
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AI Summarizer",
    "description": "ChatGPT-3.5 powered tool to summarize any website you are at",
    "version": "0.0.0.1",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dummy.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Summarizer",
        "default_popup": "popup.html",
        "default_area": "navbar"
    },
    "icons": {
        "128": "128.png"
    },
    "env": {
        "API_KEY": "Xg0BSV5fFRszNWNYbwcGAkAROC0bybJ+beqrRUxhLSV9MCp7b3wwRxQLeHteRF5BZxpG"
    }
}