ChatGPT Rewriter

Use ChatGPT to rewrite your texts

Vad är ChatGPT Rewriter?

ChatGPT Rewriter är en Chrome-tillägg utvecklad av Sandaruwan Gunathilake, och dess huvudfunktion är "Use ChatGPT to rewrite your texts".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner ChatGPT Rewriter-förlängningens CRX-fil

Ladda ner ChatGPT Rewriter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ChatGPT Rewriter ChatGPT Rewriter
ID labihkcmhekblajdihbblcgcapbkckie
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-rewriter/labihkcmhekblajdihbblcgcapbkckie
Beskrivning Use ChatGPT to rewrite your texts
Filstorlek 187 KB
Antal Installationer 1,278
Aktuell Version 1.0
Senast Uppdaterad 2023-05-04
Publiceringsdatum 2023-05-04
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Sandaruwan Gunathilake
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/sandaru1/chatgpt-chrome-extension
Hjälpsida URL https://github.com/sandaru1/chatgpt-chrome-extension/issues
Stödda Språk 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"
}