Go2Doc
This extension opens the corresponding tab in godoc.org.
什么是Go2Doc?
Go2Doc是由francesc开发的Chrome扩展程序,该扩展的主要功能是“This extension opens the corresponding tab in godoc.org.”。
扩展截图
下载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 |
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" } } |