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 |
电子邮箱 | [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" } |