ChatGPT Rewriter

Use ChatGPT to rewrite your texts

O que é ChatGPT Rewriter?

ChatGPT Rewriter é uma extensão do Chrome desenvolvida por Sandaruwan Gunathilake, e sua principal característica é "Use ChatGPT to rewrite your texts".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão ChatGPT Rewriter

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

                        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.                    

Informações Básicas da Extensão

Nome ChatGPT Rewriter ChatGPT Rewriter
ID labihkcmhekblajdihbblcgcapbkckie
URL Oficial https://chromewebstore.google.com/detail/chatgpt-rewriter/labihkcmhekblajdihbblcgcapbkckie
Descrição Use ChatGPT to rewrite your texts
Tamanho do Arquivo 187 KB
Contagem de Instalações 1,278
Versão Atual 1.0
Última Atualização 2023-05-04
Data de Publicação 2023-05-04
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor Sandaruwan Gunathilake
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sandaru1/chatgpt-chrome-extension
URL da Página de Ajuda https://github.com/sandaru1/chatgpt-chrome-extension/issues
Idiomas Suportados 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"
}