GitHub Repository Naming Suggestion Service
AI powered naming suggestions for your GitHub repositories
What is GitHub Repository Naming Suggestion Service?
GitHub Repository Naming Suggestion Service is a Chrome extension developed by David Wolf, and its main feature is "AI powered naming suggestions for your GitHub repositories".
Extension Screenshots
Download GitHub Repository Naming Suggestion Service Extension CRX File
Download GitHub Repository Naming Suggestion Service extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | GitHub Repository Naming Suggestion Service |
ID | poociecpnnmbmbfbmimfnjahceocgppm |
Official URL | https://chromewebstore.google.com/detail/github-repository-naming/poociecpnnmbmbfbmimfnjahceocgppm |
Description | AI powered naming suggestions for your GitHub repositories |
File Size | 690 KB |
Installation Count | 51 |
Current Version | 1.0.1 |
Last Updated | 2022-07-02 |
Publish Date | 2022-06-20 |
Developer | David Wolf |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/devidw/ghrns |
Help Page URL | https://github.com/devidw/ghrns/issues |
Privacy Policy Page URL | https://david.wolf.gdn/privacy |
Supported Languages | 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" } |