Go2Doc

This extension opens the corresponding tab in godoc.org.

What is Go2Doc?

Go2Doc is a Chrome extension developed by francesc, and its main feature is "This extension opens the corresponding tab in godoc.org.".

Extension Screenshots

screenshot

Download Go2Doc Extension CRX File

Download Go2Doc 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 extensions shows a tiny little gopher on the address box whenever the URL is in github.com or code.google.com.

Clicking the little gopher opens the corresponding godoc.org page on a new tab.

Note: The gopher appears on any repository, without checking if there's any Go code in it. I might fix this at some point.                    

Extension Basic Information

Name Go2Doc Go2Doc
ID mnpdpppgidppdhingkmlcmmgdjknecif
Official URL https://chromewebstore.google.com/detail/go2doc/mnpdpppgidppdhingkmlcmmgdjknecif
Description This extension opens the corresponding tab in godoc.org.
File Size 15.32 KB
Installation Count 111
Current Version 0.5
Last Updated 2014-03-19
Publish Date 2014-03-19
Rating 4.75/5 Total 4 Ratings
Developer francesc
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Go2Doc",
    "description": "This extension opens the corresponding tab in godoc.org.",
    "version": "0.5",
    "background": {
        "scripts": [
            "godoc.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "icons": {
        "128": "doc.png"
    },
    "page_action": {
        "default_icon": "doc.png",
        "default_title": "open in godoc.org"
    }
}