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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}