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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้าช่วยเหลือ | 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" } } |