Go Doc Tooltip
Show go doc's function description as tooltip of function list
Go Doc Tooltip란 무엇입니까?
Go Doc Tooltip은(는) butaixianran에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show go doc's function description as tooltip of function list"입니다.
확장 프로그램 스크린샷
Go Doc Tooltip 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is for golang users. When you're at official doc site, this extension will show function's description as tooltip on function list. So you don't need to scroll down that long list page anymore. Github: https://github.com/diankong/GoDocTooltip
확장 프로그램 기본 정보
이름 | Go Doc Tooltip |
ID | fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
공식 URL | https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
설명 | Show go doc's function description as tooltip of function list |
파일 크기 | 16.01 KB |
설치 횟수 | 100 |
현재 버전 | 0.0.7 |
최근 업데이트 | 2022-12-03 |
출시 날짜 | 2020-04-20 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | butaixianran |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Go Doc Tooltip", "short_name": "gdt", "version": "0.0.7", "description": "Show go doc's function description as tooltip of function list", "author": "butaixianran", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/golang.org\/pkg\/*", "https:\/\/godoc.org\/*", "https:\/\/pkg.go.dev\/*" ], "js": [ "content.js" ] } ] } |