goto.dev - Pull request superpowers
Understand code 10x faster on GitHub 😉
Was ist goto.dev - Pull request superpowers?
goto.dev - Pull request superpowers ist eine Chrome-Erweiterung, die von https://goto.dev entwickelt wurde, und ihr Hauptmerkmal ist "Understand code 10x faster on GitHub 😉".
Erweiterungsscreenshots
goto.dev - Pull request superpowers-Erweiterungs-CRX-Datei herunterladen
Laden Sie goto.dev - Pull request superpowers-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | goto.dev - Pull request superpowers |
ID | mdcamhfkgghpkikjmenaehohapnkegja |
Offizielle URL | https://chromewebstore.google.com/detail/gotodev-pull-request-supe/mdcamhfkgghpkikjmenaehohapnkegja |
Beschreibung | Understand code 10x faster on GitHub 😉 |
Dateigröße | 73.71 KB |
Installationsanzahl | 22 |
Aktuelle Version | 2021.06.18 |
Letztes Update | 2021-06-19 |
Veröffentlichungsdatum | 2019-08-12 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | https://goto.dev |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://goto.dev |
Unterstützte Sprachen | 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" ] } ] } |