ChatGPT Rewriter

Use ChatGPT to rewrite your texts

ChatGPT Rewriterとは何ですか?

ChatGPT RewriterはSandaruwan Gunathilakeによって開発されたChromeの拡張機能で、その主な機能は「Use ChatGPT to rewrite your texts」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

ChatGPT Rewriter拡張機能のCRXファイルをダウンロード

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
Eメール [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"
}