Github Godoc

Enhances Github UI for Go projects

What is Github Godoc?

Github Godoc is a Chrome extension developed by Unknown, and its main feature is "Enhances Github UI for Go projects".

Extension Screenshots

screenshot

Download Github Godoc Extension CRX File

Download Github Godoc extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Github Godoc Github Godoc
ID fhlenghekakdnaamlbkhhnnhdlpfpfej
Official URL https://chromewebstore.google.com/detail/github-godoc/fhlenghekakdnaamlbkhhnnhdlpfpfej
Description Enhances Github UI for Go projects
File Size 24.68 KB
Installation Count 61
Current Version 1.5
Last Updated 2019-06-21
Publish Date 2019-06-21
Rating 5.00/5 Total 1 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/posener/chrome-github-godoc
Supported Languages 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"
    }
}