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
官方網址 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"
    }
}