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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | GitHub Repository Naming Suggestion Service |
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 |
عنوان صفحة المساعدة | https://github.com/devidw/ghrns/issues |
عنوان صفحة سياسة الخصوصية | 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" } |