CodeWing - GitHub code navigation
Next level code navigation for Python, Java, and Go on GitHub.
ما هو CodeWing - GitHub code navigation؟
CodeWing - GitHub code navigation هو إضافة Chrome تم تطويرها بواسطة https://codewing.dev، والميزة الرئيسية لها هي "Next level code navigation for Python, Java, and Go on GitHub.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة CodeWing - GitHub code navigation
قم بتنزيل ملفات الامتداد CodeWing - GitHub code navigation بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
*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
معلومات أساسية عن التمديد
الاسم | CodeWing - GitHub code navigation |
ID | njkkfaliiinmkcckepjdmgbmjljfdeee |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee |
الوصف | Next level code navigation for Python, Java, and Go on GitHub. |
حجم الملف | 166 KB |
عدد التثبيتات | 604 |
النسخة الحالية | 2022-07-20T06:24:26Z 8a2b97e |
آخر تحديث | 2022-07-20 |
تاريخ النشر | 2020-06-28 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | https://codewing.dev |
البريد الإلكتروني | [email protected] |
نوع الدفع | in_app |
موقع الإضافة | https://codewing.dev |
عنوان صفحة المساعدة | https://github.com/codewing-dev/codewing |
اللغات المدعومة | 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" } |