GitHub Repository Naming Suggestion Service

AI powered naming suggestions for your GitHub repositories

什麼是GitHub Repository Naming Suggestion Service?

GitHub Repository Naming Suggestion Service是由David Wolf開發的Chrome擴展程式,該擴展的主要功能是“AI powered naming suggestions for your GitHub repositories”。

擴展截圖

screenshot
screenshot
screenshot

下載GitHub Repository Naming Suggestion Service擴展crx文件

下載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
官方網址 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"
}