Go2Doc

This extension opens the corresponding tab in godoc.org.

Go2Docとは何ですか?

Go2Docはfrancescによって開発されたChromeの拡張機能で、その主な機能は「This extension opens the corresponding tab in godoc.org.」です。

拡張機能のスクリーンショット

screenshot

Go2Doc拡張機能のCRXファイルをダウンロード

Go2Doc拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Go2Doc Go2Doc
ID mnpdpppgidppdhingkmlcmmgdjknecif
公式URL https://chromewebstore.google.com/detail/go2doc/mnpdpppgidppdhingkmlcmmgdjknecif
説明 This extension opens the corresponding tab in godoc.org.
ファイルサイズ 15.32 KB
インストール数 111
現在のバージョン 0.5
最終更新日 2014-03-19
公開日 2014-03-19
評価 4.75/5 合計 4 レビュー
開発者 francesc
支払い方法 free
対応言語 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"
    }
}