Github Annotator
Show user details and repository info in a tooltip.
Github Annotatorคืออะไร?
Github Annotator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mesut Tasci และคุณลักษณะหลักของมันคือ "Show user details and repository info in a tooltip."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Annotator
ดาวน์โหลดไฟล์ส่วนขยาย Github Annotator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Show user,repo and gist informations in a tooltip at news feed. With this extension, you don't have to visit the user's or repos' own pages.
Extension source code:
https://github.com/mesuutt/github-annotator ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | epmbkocbfiejffcjahjhncadlipmdime |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
| คำอธิบาย | Show user details and repository info in a tooltip. |
| ขนาดไฟล์ | 81.68 KB |
| จำนวนการติดตั้ง | 214 |
| เวอร์ชันปัจจุบัน | 2.1 |
| อัปเดตครั้งล่าสุด | 2017-10-22 |
| วันที่เผยแพร่ | 2017-10-22 |
| คะแนน | 4.50/5 รวมทั้งหมด 2 คะแนน |
| ผู้พัฒนา | Mesut Tasci |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | http://github.com/mesuutt/github-annotator |
| URL หน้าช่วยเหลือ | https://github.com/mesuutt/github-annotator/issues |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Annotator",
"description": "Show user details and repository info in a tooltip.",
"manifest_version": 2,
"version": "2.1",
"permissions": [
"storage"
],
"content_scripts": [
{
"js": [
"jquery-1.9.1.min.js",
"contentscript.js"
],
"css": [
"style.css"
],
"matches": [
"https:\/\/github.com\/"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options.html",
"icons": {
"128": "icons\/icon128.png",
"48": "icons\/icon48.png",
"16": "icons\/icon16.png"
}
} | |