GitHub Repository Naming Suggestion Service
AI powered naming suggestions for your GitHub repositories
Wat is GitHub Repository Naming Suggestion Service?
GitHub Repository Naming Suggestion Service is een Chrome-extensie ontwikkeld door David Wolf, en de belangrijkste functie is "AI powered naming suggestions for your GitHub repositories".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub Repository Naming Suggestion Service
Download GitHub Repository Naming Suggestion Service-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | poociecpnnmbmbfbmimfnjahceocgppm |
| Officiële URL | https://chromewebstore.google.com/detail/github-repository-naming/poociecpnnmbmbfbmimfnjahceocgppm |
| Beschrijving | AI powered naming suggestions for your GitHub repositories |
| Bestandsgrootte | 690 KB |
| Aantal Installaties | 51 |
| Huidige Versie | 1.0.1 |
| Laatst Bijgewerkt | 2022-07-02 |
| Publicatiedatum | 2022-06-20 |
| Ontwikkelaar | David Wolf |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/devidw/ghrns |
| Help Pagina-URL | https://github.com/devidw/ghrns/issues |
| URL van de Privacybeleid Pagina | https://david.wolf.gdn/privacy |
| Ondersteunde Talen | 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"
} | |