goto.dev - Pull request superpowers
Understand code 10x faster on GitHub 😉
goto.dev - Pull request superpowers란 무엇입니까?
goto.dev - Pull request superpowers은(는) https://goto.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Understand code 10x faster on GitHub 😉"입니다.
확장 프로그램 스크린샷
goto.dev - Pull request superpowers 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Chrome extension: 💡 Augments public repositories on GitHub.com with helpful tooltips and go-to-definition links 💪 Is uniquely able to understand dependencies even across many different repositories ⚡ Works right out of the box: no messing with continuous integration settings! 💗 Is open source: https://github.com/gotodev/gotodev-chrome Currently Java is supported and more languages are coming soon. We take security seriously: This extension never sends out any code from the pages you visit, and it does not at all work for private repositories. The extension is open source for anyone to review.
확장 프로그램 기본 정보
이름 | goto.dev - Pull request superpowers |
ID | mdcamhfkgghpkikjmenaehohapnkegja |
공식 URL | https://chromewebstore.google.com/detail/gotodev-pull-request-supe/mdcamhfkgghpkikjmenaehohapnkegja |
설명 | Understand code 10x faster on GitHub 😉 |
파일 크기 | 73.71 KB |
설치 횟수 | 22 |
현재 버전 | 2021.06.18 |
최근 업데이트 | 2021-06-19 |
출시 날짜 | 2019-08-12 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://goto.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://goto.dev |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "goto.dev - Pull request superpowers", "version": "2021.06.18", "version_name": "2021.06.18", "description": "Understand code 10x faster on GitHub \ud83d\ude09", "author": "goto.dev", "homepage_url": "https:\/\/goto.dev", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*" ], "js": [ "vendor\/popper.v2.9.2.js", "vendor\/tippy.umd.v6.3.1.js", "vendor\/prism.v1.23.0.js", "content.js" ], "css": [ "vendor\/tippy.v6.3.1.css", "prism.css", "style.css" ] } ] } |