Go2Doc

This extension opens the corresponding tab in godoc.org.

Go2Doc là gì?

Go2Doc là một tiện ích mở rộng Chrome được phát triển bởi francesc, và tính năng chính của nó là "This extension opens the corresponding tab in godoc.org.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Go2Doc

Tải xuống các tệp mở rộng Go2Doc dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Go2Doc Go2Doc
ID mnpdpppgidppdhingkmlcmmgdjknecif
URL Chính Thức https://chromewebstore.google.com/detail/go2doc/mnpdpppgidppdhingkmlcmmgdjknecif
Mô tả This extension opens the corresponding tab in godoc.org.
Kích Thước Tệp 15.32 KB
Số Lần Cài Đặt 111
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2014-03-19
Ngày Phát Hành 2014-03-19
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển francesc
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}