Codeflower
Visualize repos on github.
ما هو Codeflower؟
Codeflower هو إضافة Chrome تم تطويرها بواسطة Jake Mensch، والميزة الرئيسية لها هي "Visualize repos on github.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Codeflower
قم بتنزيل ملفات الامتداد Codeflower بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The extension adds a "Codeflower" tab to the navigation bar on github.com. When you click on the tab, you'll see the repository, visualized as a d3 force-directed graph. The inner nodes in the graph correspond to the directories in the repository, and the outer (colored) nodes correspond to the files. The size of the outer nodes increases with the number of lines of code in the file, and the color of the outer nodes indicates what language the file is written in. More info on github! https://github.com/jmensch1/codeflower
معلومات أساسية عن التمديد
الاسم | Codeflower |
ID | mnlengnbfpfgcfdgfpkjekoaeophmmeh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh |
الوصف | Visualize repos on github. |
حجم الملف | 246 KB |
عدد التثبيتات | 221 |
النسخة الحالية | 1.0.7 |
آخر تحديث | 2022-04-26 |
تاريخ النشر | 2020-06-28 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Jake Mensch |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/jmensch1/codeflower |
عنوان صفحة المساعدة | https://github.com/jmensch1/codeflower |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Codeflower", "version": "1.0.7", "description": "Visualize repos on github.", "icons": { "48": "images\/icon128.png", "128": "images\/icon128.png" }, "author": "Jake Mensch", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "js\/jquery.js", "js\/main.js" ] } ], "web_accessible_resources": [ "html\/frame.html" ], "offline_enabled": false } |