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文件
下载goto.dev - Pull request superpowers扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |