Github Godoc

Enhances Github UI for Go projects

Apa itu Github Godoc?

Github Godoc adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Enhances Github UI for Go projects".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Github Godoc

Unduh file ekstensi Github Godoc 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

                        This extension modifies Github files list view for Go projects:

* Replaces git commit messages with useful godoc.org synopsis.
* Adds an icon with a link to the package in godoc.org.                    

Informasi Dasar Ekstensi

Nama Github Godoc Github Godoc
ID fhlenghekakdnaamlbkhhnnhdlpfpfej
URL Resmi https://chromewebstore.google.com/detail/github-godoc/fhlenghekakdnaamlbkhhnnhdlpfpfej
Deskripsi Enhances Github UI for Go projects
Ukuran File 24.68 KB
Jumlah Instalasi 61
Versi Saat Ini 1.5
Terakhir Diperbarui 2019-06-21
Tanggal Publikasi 2019-06-21
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Situs Ekstensi https://github.com/posener/chrome-github-godoc
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Godoc",
    "description": "Enhances Github UI for Go projects",
    "version": "1.5",
    "permissions": [
        "*:\/\/*.godoc.org\/*",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/gopher.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}