ChatGPT Rewriter

Use ChatGPT to rewrite your texts

Τι είναι το ChatGPT Rewriter;

Το ChatGPT Rewriter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sandaruwan Gunathilake, και η κύρια λειτουργία του είναι "Use ChatGPT to rewrite your texts".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ChatGPT Rewriter

Λήψη αρχείων επέκτασης ChatGPT Rewriter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChatGPT Rewriter ChatGPT Rewriter
ID labihkcmhekblajdihbblcgcapbkckie
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-rewriter/labihkcmhekblajdihbblcgcapbkckie
Περιγραφή Use ChatGPT to rewrite your texts
Μέγεθος Αρχείου 187 KB
Αριθμός Εγκαταστάσεων 1,278
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-05-04
Ημερομηνία Δημοσίευσης 2023-05-04
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Sandaruwan Gunathilake
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/sandaru1/chatgpt-chrome-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/sandaru1/chatgpt-chrome-extension/issues
Υποστηριζόμενες Γλώσσες 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"
}