ChatGPT Rewriter

Use ChatGPT to rewrite your texts

¿Qué es ChatGPT Rewriter?

ChatGPT Rewriter es una extensión de Chrome desarrollada por Sandaruwan Gunathilake, y su función principal es "Use ChatGPT to rewrite your texts".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ChatGPT Rewriter

Descarga archivos de extensión ChatGPT Rewriter 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

                        This chrome extension enables you to enhance and refine your text using ChatGPT. 

Instructions

1. Select any editable text in your browser.
2. Look for the ChatGPT Rewriter options.
3. Select "Rewrite using ChatGPT" if you want to rewrite the text.
4. Select "Ask ChatGPT" if you want to ask a question.
5. The answer will replace your text.

A loading indicator will appear on the upper right-hand corner of the page while the text is being processed.

To utilize this extension, you must have a chatGPT account. Once your account is established, the extension will guide you on how to generate and configure the API keys.                    

Información Básica de la Extensión

Nombre ChatGPT Rewriter ChatGPT Rewriter
ID labihkcmhekblajdihbblcgcapbkckie
URL Oficial https://chromewebstore.google.com/detail/chatgpt-rewriter/labihkcmhekblajdihbblcgcapbkckie
Descripción Use ChatGPT to rewrite your texts
Tamaño del Archivo 187 KB
Cantidad de Instalaciones 1,278
Versión Actual 1.0
Última Actualización 2023-05-04
Fecha de Publicación 2023-05-04
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador Sandaruwan Gunathilake
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/sandaru1/chatgpt-chrome-extension
URL de la Página de Ayuda https://github.com/sandaru1/chatgpt-chrome-extension/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Rewriter",
    "description": "Use ChatGPT to rewrite your texts",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab"
    ],
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "options_page": "src\/options\/options.html"
}