GitHub Repository Naming Suggestion Service
AI powered naming suggestions for your GitHub repositories
Что такое GitHub Repository Naming Suggestion Service?
GitHub Repository Naming Suggestion Service - это расширение Chrome, разработанное David Wolf, и его основная функция - "AI powered naming suggestions for your GitHub repositories".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Repository Naming Suggestion Service
Скачайте файлы расширений 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. Основная информация о расширении
| Название | |
| 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"
} | |