GitHub Repository Naming Suggestion Service
AI powered naming suggestions for your GitHub repositories
GitHub Repository Naming Suggestion Service là gì?
GitHub Repository Naming Suggestion Service là một tiện ích mở rộng Chrome được phát triển bởi David Wolf, và tính năng chính của nó là "AI powered naming suggestions for your GitHub repositories".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GitHub Repository Naming Suggestion Service
Tải xuống các tệp mở rộng GitHub Repository Naming Suggestion Service dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub Repository Naming Suggestion Service |
ID | poociecpnnmbmbfbmimfnjahceocgppm |
URL Chính Thức | https://chromewebstore.google.com/detail/github-repository-naming/poociecpnnmbmbfbmimfnjahceocgppm |
Mô tả | AI powered naming suggestions for your GitHub repositories |
Kích Thước Tệp | 690 KB |
Số Lần Cài Đặt | 51 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2022-07-02 |
Ngày Phát Hành | 2022-06-20 |
Nhà Phát Triển | David Wolf |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/devidw/ghrns |
URL Trang Trợ Giúp | https://github.com/devidw/ghrns/issues |
URL Trang Chính Sách Bảo Mật | https://david.wolf.gdn/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } |