GitHub Repository Naming Suggestion Service

AI powered naming suggestions for your GitHub repositories

Apa itu GitHub Repository Naming Suggestion Service?

GitHub Repository Naming Suggestion Service adalah ekstensi Chrome yang dikembangkan oleh David Wolf, dan fitur utamanya adalah "AI powered naming suggestions for your GitHub repositories".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi GitHub Repository Naming Suggestion Service

Unduh file ekstensi GitHub Repository Naming Suggestion Service dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama GitHub Repository Naming Suggestion Service GitHub Repository Naming Suggestion Service
ID poociecpnnmbmbfbmimfnjahceocgppm
URL Resmi https://chromewebstore.google.com/detail/github-repository-naming/poociecpnnmbmbfbmimfnjahceocgppm
Deskripsi AI powered naming suggestions for your GitHub repositories
Ukuran File 690 KB
Jumlah Instalasi 51
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2022-07-02
Tanggal Publikasi 2022-06-20
Pengembang David Wolf
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/devidw/ghrns
URL Halaman Bantuan https://github.com/devidw/ghrns/issues
URL Halaman Kebijakan Privasi https://david.wolf.gdn/privacy
Bahasa yang Didukung 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"
}