GitHub Repository Naming Suggestion Service
AI powered naming suggestions for your GitHub repositories
GitHub Repository Naming Suggestion Service क्या है?
GitHub Repository Naming Suggestion Service David Wolf द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "AI powered naming suggestions for your GitHub repositories"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Repository Naming Suggestion Service एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" } |