Github Godoc

Enhances Github UI for Go projects

Wat is Github Godoc?

Github Godoc is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Enhances Github UI for Go projects".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Github Godoc

Download Github Godoc-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Github Godoc Github Godoc
ID fhlenghekakdnaamlbkhhnnhdlpfpfej
Officiële URL https://chromewebstore.google.com/detail/github-godoc/fhlenghekakdnaamlbkhhnnhdlpfpfej
Beschrijving Enhances Github UI for Go projects
Bestandsgrootte 24.68 KB
Aantal Installaties 61
Huidige Versie 1.5
Laatst Bijgewerkt 2019-06-21
Publicatiedatum 2019-06-21
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Extensiewebsite https://github.com/posener/chrome-github-godoc
Ondersteunde Talen 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"
    }
}