Github Sidebar
Make shortcuts to repositories you frequently use on Github. Faster navigation and better control over your repositories.
Github Sidebarคืออะไร?
Github Sidebar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย christiansletteneide และคุณลักษณะหลักของมันคือ "Make shortcuts to repositories you frequently use on Github. Faster navigation and better control over your repositories."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Sidebar
ดาวน์โหลดไฟล์ส่วนขยาย Github Sidebar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Do you often navigate between several repositories on GitHub? This Chrome Extension lets you bookmark repositories in a sidebar injected only on GitHub.com pages. The sidebar will let you navigate faster and give you better control over your most used repositories. Features - Easy to bookmark and navigate repositories - Overview over active Pull requests or Issues for your repos - Periodically checks for new or updated items - Optional to show badge in GitHub favicon if new items - Works across multiple tabs - Color coding of items based on status (Approved, Changes Requested) Settings - Repositories Simply navigate to any Github repository you would like to add a shortcut to and press the button for *Add current repository*. You can sort the order of repositories by simply drag&drop. - Access Token For all features of this extension to work, you will need to provide an access token from Github. This is not a requirement, but it will make the extension load data about issues and pull requests from your repositories. Please create an access token here https://github.com/settings/tokens/new?scopes=repo&description=Github%20sidebar%20browser%20extension to allow this extension to fetch necessary data from Github. The necessary scopes for the token is already selected if you follow the link above. All you need is to press "Generate Token", and copy/paste the token into the extension. Note: The token is only saved to your browsers local *chrome.storage.local* and only used to communicate with Githubs API. - Other settings Should (hopefully) be pretty self-explanatory
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github Sidebar |
ID | lblnbldblpeiikndppnekobccdocccho |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-sidebar/lblnbldblpeiikndppnekobccdocccho |
คำอธิบาย | Make shortcuts to repositories you frequently use on Github. Faster navigation and better control over your repositories. |
ขนาดไฟล์ | 562 KB |
จำนวนการติดตั้ง | 101 |
เวอร์ชันปัจจุบัน | 4.0.0 |
อัปเดตครั้งล่าสุด | 2022-04-11 |
วันที่เผยแพร่ | 2020-04-05 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | christiansletteneide |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/christianeide/github-sidebar |
URL หน้าช่วยเหลือ | https://github.com/christianeide/github-sidebar |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Sidebar", "description": "Make shortcuts to repositories you frequently use on Github. Faster navigation and better control over your repositories.", "author": "Christian Gogstad Eide", "version": "4.0.0", "manifest_version": 3, "icons": { "16": "images\/logo_16.png", "32": "images\/logo_32.png", "48": "images\/logo_48.png", "128": "images\/logo_128.png" }, "permissions": [ "storage", "tabs", "alarms" ], "host_permissions": [ "https:\/\/github.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "content-script.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ { "resources": [ "*.png" ], "matches": [ "https:\/\/github.com\/*" ] } ] } |