ChatGPT Rewriter

Use ChatGPT to rewrite your texts

Qu'est-ce que ChatGPT Rewriter ?

ChatGPT Rewriter est une extension Chrome développée par Sandaruwan Gunathilake, et sa fonction principale est "Use ChatGPT to rewrite your texts".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ChatGPT Rewriter

Téléchargez les fichiers d'extension ChatGPT Rewriter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ChatGPT Rewriter ChatGPT Rewriter
ID labihkcmhekblajdihbblcgcapbkckie
URL Officiel https://chromewebstore.google.com/detail/chatgpt-rewriter/labihkcmhekblajdihbblcgcapbkckie
Description Use ChatGPT to rewrite your texts
Taille du Fichier 187 KB
Nombre d'Installations 1,278
Version Actuelle 1.0
Dernière Mise à Jour 2023-05-04
Date de Publication 2023-05-04
Évaluation 1.00/5 Total 1 Évaluations
Développeur Sandaruwan Gunathilake
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sandaru1/chatgpt-chrome-extension
URL de la Page d'Aide https://github.com/sandaru1/chatgpt-chrome-extension/issues
Langues Prises en Charge 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"
}