GitHub Repository Naming Suggestion Service
AI powered naming suggestions for your GitHub repositories
Co to jest GitHub Repository Naming Suggestion Service?
GitHub Repository Naming Suggestion Service to rozszerzenie Chrome opracowane przez David Wolf, a jego główną funkcją jest „AI powered naming suggestions for your GitHub repositories”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Repository Naming Suggestion Service
Pobierz pliki rozszerzeń GitHub Repository Naming Suggestion Service w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub Repository Naming Suggestion Service |
ID | poociecpnnmbmbfbmimfnjahceocgppm |
Oficjalny URL | https://chromewebstore.google.com/detail/github-repository-naming/poociecpnnmbmbfbmimfnjahceocgppm |
Opis | AI powered naming suggestions for your GitHub repositories |
Rozmiar pliku | 690 KB |
Liczba instalacji | 51 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2022-07-02 |
Data Publikacji | 2022-06-20 |
Deweloper | David Wolf |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/devidw/ghrns |
Adres URL Strony Pomocy | https://github.com/devidw/ghrns/issues |
Adres URL Strony Polityki Prywatności | https://david.wolf.gdn/privacy |
Obsługiwane Języki | 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" } |