ReaderGPT: ChatGPT based Web Page Summariser

Generates summary of any readable web page using ChatGPT with just a single click.

¿Qué es ReaderGPT: ChatGPT based Web Page Summariser?

ReaderGPT: ChatGPT based Web Page Summariser es una extensión de Chrome desarrollada por Nikhil Jindal, y su función principal es "Generates summary of any readable web page using ChatGPT with just a single click.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ReaderGPT: ChatGPT based Web Page Summariser

Descarga archivos de extensión ReaderGPT: ChatGPT based Web Page Summariser 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

                        Are you constantly bogged down by long articles and ever growing read later list? Do you wish you had a way to quickly grasp the summary. Look no further than the ReaderGPT, a ChatGPT powered Extension!

The extension offers:
1. Curate a list of prompt and generate content based on any of your prompt.
2. Use OpenAI API Key or ChatGPT login.
3. Some example prompts:
  - Summarise the following article in 3 concise bullet points.
  - Summarise the following article in 50 words.
  - Translate the following text to Spanish.
  - Simplify the following text for a five years old.
  - Write a caption based on the following text.

This extension uses parses the readable content from the page and pass it along to the ChatGPT along with the prompt to generate a summary that captures the most important points. 

With the ChatGPT Summary Generator Chrome Extension, you'll save time, stay informed, and never have to wade through lengthy content again. Try it out today and see just how much more efficient your reading and research can be!                    

Información Básica de la Extensión

Nombre ReaderGPT: ChatGPT based Web Page Summariser ReaderGPT: ChatGPT based Web Page Summariser
ID ohgodjgnfedgikkgcjdkomkadbfedcjd
URL Oficial https://chromewebstore.google.com/detail/readergpt-chatgpt-based-w/ohgodjgnfedgikkgcjdkomkadbfedcjd
Descripción Generates summary of any readable web page using ChatGPT with just a single click.
Tamaño del Archivo 244 KB
Cantidad de Instalaciones 79,324
Versión Actual 0.101
Última Actualización 2023-12-04
Fecha de Publicación 2022-12-30
Calificación 3.66/5 Total de 76 Calificaciones
Desarrollador Nikhil Jindal
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://twitter.com/jindal__
URL de la Página de Política de Privacidad https://reader-gpt.github.io/privacy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ReaderGPT: ChatGPT based Web Page Summariser",
    "description": "Generates summary of any readable web page using ChatGPT with just a single click.",
    "version": "0.101",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "content_page_inject.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/chatgpt.svg",
                "images\/repeat.svg",
                "images\/copy.svg",
                "images\/trash.svg",
                "images\/cross.svg",
                "content.css",
                "content_page_inject.css",
                "options.html",
                "popup.html",
                "options.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            }
        }
    }
}