CodeWing - GitHub code navigation
Next level code navigation for Python, Java, and Go on GitHub.
Qu'est-ce que CodeWing - GitHub code navigation ?
CodeWing - GitHub code navigation est une extension Chrome développée par https://codewing.dev, et sa fonction principale est "Next level code navigation for Python, Java, and Go on GitHub.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CodeWing - GitHub code navigation
Téléchargez les fichiers d'extension CodeWing - GitHub code navigation au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
*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
Informations de Base sur l'Extension
Nom | CodeWing - GitHub code navigation |
ID | njkkfaliiinmkcckepjdmgbmjljfdeee |
URL Officiel | https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee |
Description | Next level code navigation for Python, Java, and Go on GitHub. |
Taille du Fichier | 166 KB |
Nombre d'Installations | 604 |
Version Actuelle | 2022-07-20T06:24:26Z 8a2b97e |
Dernière Mise à Jour | 2022-07-20 |
Date de Publication | 2020-06-28 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | https://codewing.dev |
[email protected] | |
Type de Paiement | in_app |
Site Web de l'Extension | https://codewing.dev |
URL de la Page d'Aide | https://github.com/codewing-dev/codewing |
Langues Prises en Charge | 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" } |