Repositree
Browser Extension that helps to explore Github repository
Repositreeคืออะไร?
Repositree เป็นส่วนขยายของ Chrome ที่พัฒนาโดย saudchougle และคุณลักษณะหลักของมันคือ "Browser Extension that helps to explore Github repository"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Repositree
ดาวน์โหลดไฟล์ส่วนขยาย Repositree ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ctrl + B Toggle Side Bar Visibility Features - Clean UI - IDE-like code tree for GitHub (Public and Private) repositories. - Left & Right Dock Location. - Resizable Layout. - Github Light, Dark, Dimmed & Dark high contrast themes. - Bookmark - github1s(VSCode) mode. - More Feature Coming Soon... Privacy Policy - Repositree doesn't share, collect your data at all. - GitHub Access Token or GitHub Personal Access Token is required only when you access private repositories or exceed the GitHub API rate limit. - Repositree store token in your chrome extension storage, not in the localStorage and use only to authenticate with the GitHub.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Repositree |
ID | lafjldoccjnjlcmdhmniholdpjkbgajo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/repositree/lafjldoccjnjlcmdhmniholdpjkbgajo |
คำอธิบาย | Browser Extension that helps to explore Github repository |
ขนาดไฟล์ | 314 KB |
จำนวนการติดตั้ง | 146 |
เวอร์ชันปัจจุบัน | 1.6.2 |
อัปเดตครั้งล่าสุด | 2021-07-05 |
วันที่เผยแพร่ | 2020-11-13 |
คะแนน | 5.00/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | saudchougle |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/chouglesaud/repositree |
URL หน้าช่วยเหลือ | https://github.com/chouglesaud/repositree |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Repositree", "author": "Saud Chougle", "minimum_chrome_version": "60", "permissions": [ "storage", "https:\/\/api.github.com\/*" ], "version": "1.6.2", "description": "Browser Extension that helps to explore Github repository", "content_scripts": [ { "run_at": "document_start", "css": [ ".\/style.css" ], "js": [ ".\/content.js" ], "matches": [ "https:\/\/github.com\/*\/*" ] } ] } |