GitHub Repository Naming Suggestion Service

AI powered naming suggestions for your GitHub repositories

GitHub Repository Naming Suggestion Serviceคืออะไร?

GitHub Repository Naming Suggestion Service เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Wolf และคุณลักษณะหลักของมันคือ "AI powered naming suggestions for your GitHub repositories"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Repository Naming Suggestion Service

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

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

                        Let AI suggest namings for your GitHub repositories. Open any public repo on GitHub, and use the extension as a client to prompt OpenAI for naming suggestions using the GitHub repository's description and your OpenAI API key.                    

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

ชื่อ GitHub Repository Naming Suggestion Service GitHub Repository Naming Suggestion Service
ID poociecpnnmbmbfbmimfnjahceocgppm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-repository-naming/poociecpnnmbmbfbmimfnjahceocgppm
คำอธิบาย AI powered naming suggestions for your GitHub repositories
ขนาดไฟล์ 690 KB
จำนวนการติดตั้ง 51
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-07-02
วันที่เผยแพร่ 2022-06-20
ผู้พัฒนา David Wolf
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/devidw/ghrns
URL หน้าช่วยเหลือ https://github.com/devidw/ghrns/issues
URL หน้านโยบายความเป็นส่วนตัว https://david.wolf.gdn/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Repository Naming Suggestion Service",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_popup": "www\/index.html#\/popup",
        "default_title": "GitHub Repository Naming Suggestion Service"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "options_page": "www\/index.html#\/options",
    "short_name": "GitHub Repository Naming Suggestion Service",
    "description": "AI powered naming suggestions for your GitHub repositories",
    "version": "1.0.1"
}