CodeWing - GitHub code navigation
Next level code navigation for Python, Java, and Go on GitHub.
Cos'è CodeWing - GitHub code navigation?
CodeWing - GitHub code navigation è un'estensione di Chrome sviluppata da https://codewing.dev, e la sua funzione principale è "Next level code navigation for Python, Java, and Go on GitHub.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CodeWing - GitHub code navigation
Scarica i file di estensione CodeWing - GitHub code navigation in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
*UPDATE* CodeWing has been integrated into Sourcegraph! Install the Sourcegraph Chrome extension instead: https://chrome.google.com/webstore/detail/sourcegraph/dgjhfomjieaadpoljlnidmbgkdffpack?hl=en *OLD DESCRIPTION BELOW* - 📜 Hover over a variable to view its documentation - ➡️ Click on a variable to jump to its definition - 🧠 Understands all language constructs (local variables, functions, etc.) - ⤴️ Works on pull requests - ⚡️ Lightning fast - 📝 Works on Java, Python, and Go code
Informazioni di Base sull'Estensione
Nome | CodeWing - GitHub code navigation |
ID | njkkfaliiinmkcckepjdmgbmjljfdeee |
URL Ufficiale | https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee |
Descrizione | Next level code navigation for Python, Java, and Go on GitHub. |
Dimensione del File | 166 KB |
Conteggio Installazioni | 604 |
Versione Corrente | 2022-07-20T06:24:26Z 8a2b97e |
Ultimo Aggiornamento | 2022-07-20 |
Data di Pubblicazione | 2020-06-28 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://codewing.dev |
[email protected] | |
Tipo di Pagamento | in_app |
Sito Web dell'Estensione | https://codewing.dev |
URL della Pagina di Aiuto | https://github.com/codewing-dev/codewing |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CodeWing - GitHub code navigation", "version": "2022.7.20.384", "description": "Next level code navigation for Python, Java, and Go on GitHub.", "icons": { "128": "icon-128.png" }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "custom.css" ], "matches": [ "https:\/\/github.com\/*" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "https:\/\/github.com\/*", "storage" ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "browser_action": { "default_popup": "popup.html", "default_title": "CodeWing settings" }, "version_name": "2022-07-20T06:24:26Z 8a2b97e" } |