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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } |