goto.dev - Pull request superpowers
Understand code 10x faster on GitHub 😉
goto.dev - Pull request superpowers क्या है?
goto.dev - Pull request superpowers https://goto.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Understand code 10x faster on GitHub 😉"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में goto.dev - Pull request superpowers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |