XReplyGPT

The fastest way to reply to tweets using ChatGPT and the easiest way to boost your tweet impressions.

XReplyGPTคืออะไร?

XReplyGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://xreplygpt.com และคุณลักษณะหลักของมันคือ "The fastest way to reply to tweets using ChatGPT and the easiest way to boost your tweet impressions."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย XReplyGPT

ดาวน์โหลดไฟล์ส่วนขยาย XReplyGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Automatic reply generator for X (https://x.com) chrome extension.

Automatic reply generator for Twitter (https://twitter.com) chrome extension.

Boost your tweet impressions! Engaging in X replies is the ultimate strategy to quickly enhance your visibility and reach a wider audience. 

XReplyGPT generates reply automaticly for https://x.com using ChatGPT. With few clicks you can generate hundreds of reply.

How it works?
1. Create an OpenAI API key https://platform.openai.com/account/api-keys. Make sure you have a paid account or it won't work.
2. Save it in the config section.
4. Open https://x.com.
5. Press the shortcut configured in the extension, you can find it in the shortcut section when you install the extension.
6. Press on the generated reply to send it.


Website: https://xreplygpt.com/ 
Youtube video: https://www.youtube.com/watch?v=nJZ6UyEtyjU&ab_channel=Marc-OlivierBouchard 
Github: https://github.com/marcolivierbouch/XReplyGPT                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ XReplyGPT XReplyGPT
ID ajjgpcaiofpdenhkmabcadabajmimpdk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/xreplygpt/ajjgpcaiofpdenhkmabcadabajmimpdk
คำอธิบาย The fastest way to reply to tweets using ChatGPT and the easiest way to boost your tweet impressions.
ขนาดไฟล์ 18.71 MB
จำนวนการติดตั้ง 81
เวอร์ชันปัจจุบัน 6.4
อัปเดตครั้งล่าสุด 2023-09-25
วันที่เผยแพร่ 2023-08-03
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://xreplygpt.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://xreplygpt.com
URL หน้าช่วยเหลือ https://github.com/marcolivierbouch/XReplyGPT/issues
URL หน้านโยบายความเป็นส่วนตัว https://marcolivierbouch.github.io/XReplyGPT/privacy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "6.4",
    "name": "XReplyGPT",
    "description": "The fastest way to reply to tweets using ChatGPT and the easiest way to boost your tweet impressions.",
    "icons": {
        "128": "src\/images\/XReplyGPT.png"
    },
    "background": {
        "service_worker": "src\/service-worker.js",
        "type": "module"
    },
    "commands": {
        "generate_reply": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Generate reply for tweets."
        },
        "move_to_next_button": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "(When you are on the home page) Move to the next generated reply in the Home page. After doing this shortcut, the focus will be on the reply button, so you can directly press ENTER to enter the reply window. When you are at the last generated reply it will regenerate a new batch of reply. <\/br> (When you are in the reply page) Move to the 'reply' button in a reply window. After doing this shortcut, the focus will be on the 'send' button, so you can directly press ENTER to reply."
        },
        "move_to_previous_button": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Move to the previous generated reply."
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/x.com\/*"
            ],
            "js": [
                "src\/content-window-exit.js"
            ]
        }
    ],
    "action": {
        "default_popup": "src\/index.html",
        "default_icon": "src\/images\/XReplyGPTbg.png"
    }
}