GPT-Rex - AI assist for blogging on Medium

GPT-Rex is an AI assistant for blogging on Medium. It uses GPT-3 to help you write faster and avoid writer's block.

GPT-Rex - AI assist for blogging on Mediumคืออะไร?

GPT-Rex - AI assist for blogging on Medium เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Abhay Kashyap และคุณลักษณะหลักของมันคือ "GPT-Rex is an AI assistant for blogging on Medium. It uses GPT-3 to help you write faster and avoid writer's block."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GPT-Rex - AI assist for blogging on Medium

ดาวน์โหลดไฟล์ส่วนขยาย GPT-Rex - AI assist for blogging on Medium ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        GPT-Rex is an open source extension that helps you avoid writers block while blogging on Medium using GPT-3. Once you set it up, it is as simple as hitting "Ctrl + >" while blogging to invoke GPT-3 to auto-complete a few sentences. It is simply, intuitive and comes with good default settings while also letting you customize the settings to your liking.

It works directly on Medium which saves you from having to navigate to different editors adding AI as a feature to your existing publishing workflow. Also, you can directly use your OpenAI without external services. GPT-Rex is the first of many open source chrome extensions aimed to directly bring GPT-3 to your browser experience.

What is GPT-3? It is a powerful generative AI by OpenAI  that can generate human-like text. It is trained on a massive dataset of text and can generate text that is indistinguishable from human-written text. This makes it a great tool for content creation. It is also multi-lingual and can generate text in multiple languages that fit your needs.                    

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

ชื่อ GPT-Rex - AI assist for blogging on Medium GPT-Rex - AI assist for blogging on Medium
ID occhafcmdjiieioboagohfigolecoeag
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gpt-rex-ai-assist-for-blo/occhafcmdjiieioboagohfigolecoeag
คำอธิบาย GPT-Rex is an AI assistant for blogging on Medium. It uses GPT-3 to help you write faster and avoid writer's block.
ขนาดไฟล์ 91.42 KB
จำนวนการติดตั้ง 175
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2022-12-11
วันที่เผยแพร่ 2022-12-09
ผู้พัฒนา Abhay Kashyap
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/hayabhay/gpt-go
URL หน้าช่วยเหลือ https://github.com/hayabhay/gpt-go/discussions
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT-Rex - AI assist for blogging on Medium",
    "version": "0.0.2",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "description": "GPT-Rex is an AI assistant for blogging on Medium. It uses GPT-3 to help you write faster and avoid writer's block.",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/medium.com\/*",
                "https:\/\/www.medium.com\/*",
                "https:\/\/*.medium.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}