Github Godoc

Enhances Github UI for Go projects

Was ist Github Godoc?

Github Godoc ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Enhances Github UI for Go projects".

Erweiterungsscreenshots

screenshot

Github Godoc-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Godoc-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Github Godoc Github Godoc
ID fhlenghekakdnaamlbkhhnnhdlpfpfej
Offizielle URL https://chromewebstore.google.com/detail/github-godoc/fhlenghekakdnaamlbkhhnnhdlpfpfej
Beschreibung Enhances Github UI for Go projects
Dateigröße 24.68 KB
Installationsanzahl 61
Aktuelle Version 1.5
Letztes Update 2019-06-21
Veröffentlichungsdatum 2019-06-21
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/posener/chrome-github-godoc
Unterstützte Sprachen 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"
    }
}