GitHub with a cape
Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
GitHub with a capeคืออะไร?
GitHub with a cape เป็นส่วนขยายของ Chrome ที่พัฒนาโดย NicoSantangelo และคุณลักษณะหลักของมันคือ "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub with a cape
ดาวน์โหลดไฟล์ส่วนขยาย GitHub with a cape ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
All options can be turn on and off, it includes:
- Notifications modal
- Resizeable splitted diffs
- Add collapsable diffs
- Show All / Hide All buttons
- Show the current diff name on the sticky header
- Add collapsable commits
- Toggle contributions by clicking the added/deleted stats
- Show outdated diff comments by default
- Highlights the outdated diff icon (the X) on PRs ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ohkgmmldhbadfleajjafdeahmakbbcpi |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi |
| คำอธิบาย | Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like! |
| ขนาดไฟล์ | 31.47 KB |
| จำนวนการติดตั้ง | 22 |
| เวอร์ชันปัจจุบัน | 1.4.4 |
| อัปเดตครั้งล่าสุด | 2017-02-12 |
| วันที่เผยแพร่ | 2017-02-11 |
| คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
| ผู้พัฒนา | NicoSantangelo |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github-with-a-cape.nicosantangelo.com/ |
| URL หน้าช่วยเหลือ | https://github.com/NicoSantangelo/github-with-a-cape/issues |
| URL หน้านโยบายความเป็นส่วนตัว | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GitHub with a cape",
"description": "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!",
"short_name": "Github with a cape",
"version": "1.4.4",
"icons": {
"18": "icons\/18.png",
"19": "icons\/19.png",
"38": "icons\/38.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.github.com\/*",
"http:\/\/www.github.com\/*",
"https:\/\/github.com\/*",
"http:\/\/github.com\/*"
],
"js": [
"configuration.js",
"notifications.js",
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_page": "options\/options.html",
"options_ui": {
"page": "options\/options.html"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"notifications.html"
]
} | |