GitHub Repository Naming Suggestion Service
AI powered naming suggestions for your GitHub repositories
Co je GitHub Repository Naming Suggestion Service?
GitHub Repository Naming Suggestion Service je rozšíření Chrome vyvinuté David Wolf, a jeho hlavní funkcí je „AI powered naming suggestions for your GitHub repositories“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GitHub Repository Naming Suggestion Service
Stáhněte si soubory rozšíření GitHub Repository Naming Suggestion Service ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | GitHub Repository Naming Suggestion Service |
ID | poociecpnnmbmbfbmimfnjahceocgppm |
Oficiální URL | https://chromewebstore.google.com/detail/github-repository-naming/poociecpnnmbmbfbmimfnjahceocgppm |
Popis | AI powered naming suggestions for your GitHub repositories |
Velikost souboru | 690 KB |
Počet instalací | 51 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2022-07-02 |
Datum Vydání | 2022-06-20 |
Vývojář | David Wolf |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/devidw/ghrns |
URL Stránky Nápovědy | https://github.com/devidw/ghrns/issues |
URL Stránky Zásad Ochrany Soukromí | https://david.wolf.gdn/privacy |
Podporované Jazyky | 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" } |