README Writer

Chrome extension to write README.md files for GitHub repos

README Writerคืออะไร?

README Writer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย darkhanahmetov228 และคุณลักษณะหลักของมันคือ "Chrome extension to write README.md files for GitHub repos"

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

screenshot

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

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

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

                        README-GPT: Automatic README Generator with AI Assistance

README-GPT is an innovative Chrome extension that takes the hassle out of writing project READMEs. With AI-powered assistance, it generates comprehensive, informative, and visually appealing README.md files, saving you valuable time and effort.

Features:

Seamless Integration: Easily integrate README-GPT into your Chrome browser to access it whenever you need to create or update your project's README file.

AI-Generated Content: Leverage the power of OpenAI's GPT-3 to automatically generate descriptive content for your project's introduction, features, installation guide, usage instructions, and more.

Customization Options: Tailor the README output to match your project's unique requirements, including license information, environment details, and open contribution policies.

Visual Appeal: Add images, badges, and GIFs to make your README visually engaging and captivating for your users.

How to Use:

Install the README-GPT Chrome extension.
Click on the extension icon to open the generator.
Enter your project details, such as name, features, license, environment, and more.
Customize the generated content to fit your project's specific needs.
Download or copy the generated README.md file and add it to your project repository.
Why Choose README-GPT:

Time-Saving: Say goodbye to manual README writing and let AI do the heavy lifting for you.

Consistency: Maintain a consistent and professional look for all your projects' README files.

Engaging Documentation: Impress your users with visually appealing READMEs that effectively explain your project's purpose and functionalities.

OpenAI Integration: Benefit from state-of-the-art natural language processing and content generation through OpenAI's GPT-3.

Try README-GPT now and revolutionize the way you create project documentation!

Disclaimer: README-GPT is an independent project and not affiliated with OpenAI. The AI-generated content provided by the extension is based on user inputs and may require review and editing for accuracy and clarity.                    

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

ชื่อ README Writer README Writer
ID filbgclkefkdajabgekpohjnheocikfh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/readme-writer/filbgclkefkdajabgekpohjnheocikfh
คำอธิบาย Chrome extension to write README.md files for GitHub repos
ขนาดไฟล์ 117 KB
จำนวนการติดตั้ง 213
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2023-08-02
วันที่เผยแพร่ 2023-08-02
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา darkhanahmetov228
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "README Writer",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "Chrome extension to write README.md files for GitHub repos",
    "icons": {
        "48": "icons\/logo48.png",
        "128": "icons\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false,
            "js": [
                ".\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/background.js",
        "type": "module"
    },
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/readme-gpt-lemon.vercel.app\/"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "cookies"
    ]
}