Expand & Collapse
Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform
ما هو Expand & Collapse؟
Expand & Collapse هو إضافة Chrome تم تطويرها بواسطة achamsanjeevakumar، والميزة الرئيسية لها هي "Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Expand & Collapse
قم بتنزيل ملفات الامتداد Expand & Collapse بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Modern editors provide code expand & collapse feature which enables the user to navigate the code easily. Same doesn't exist for web version of github. Expand & Collapse tool provides same functionality. It supports prominent languages Java, JavaScript, C , C++, PHP,R,Swift
معلومات أساسية عن التمديد
الاسم | Expand & Collapse |
ID | odeomhdjffbnnobalkalehmidefcdmkn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/expand-collapse/odeomhdjffbnnobalkalehmidefcdmkn |
الوصف | Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform |
حجم الملف | 21.13 KB |
عدد التثبيتات | 76 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2021-02-17 |
تاريخ النشر | 2021-02-17 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | achamsanjeevakumar |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/achamsanjeeva/ExpandCollapse |
عنوان صفحة المساعدة | https://github.com/achamsanjeeva/ExpandCollapse |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Expand & Collapse", "description": "Extension allows the user to Expand & Collapse code sections which is hosted on any GitHub platform", "homepage_url": "https:\/\/github.com\/achamsanjeeva\/ExpandCollapse", "version": "1.0.0", "author": "Acham Sanjeeva Kumar", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "storage", "*:\/\/*.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/16x16.png", "32": "\/images\/32x32.png", "48": "\/images\/48x48.png", "128": "\/images\/128x128.png" } }, "icons": { "16": "\/images\/16x16.png", "32": "\/images\/32x32.png", "48": "\/images\/48x48.png", "128": "\/images\/128x128.png" } } |