GitHub Remarks
a chrome extension that can give github repos your own remarks
GitHub Remarksคืออะไร?
GitHub Remarks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hanzichi และคุณลักษณะหลักของมันคือ "a chrome extension that can give github repos your own remarks"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Remarks
ดาวน์โหลดไฟล์ส่วนขยาย GitHub Remarks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
a chrome extension that can give github repos your own remarks
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitHub Remarks |
ID | pkepkgjchpahghcfdmdokoonapagblem |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem |
คำอธิบาย | a chrome extension that can give github repos your own remarks |
ขนาดไฟล์ | 178 KB |
จำนวนการติดตั้ง | 45 |
เวอร์ชันปัจจุบัน | 1.2.1 |
อัปเดตครั้งล่าสุด | 2018-05-28 |
วันที่เผยแพร่ | 2018-05-27 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | hanzichi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/hanzichi/github-remarks |
URL หน้าช่วยเหลือ | https://github.com/hanzichi/github-remarks/issues |
ภาษาที่รองรับ | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Remarks", "manifest_version": 2, "version": "1.2.1", "description": "a chrome extension that can give github repos your own remarks", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "", "default_icon": { "19": "icons\/icon_19.png", "38": "icons\/icon_38.png" } }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "js": [ "content-scripts\/repoDetail.js" ], "css": [], "run_at": "document_end" }, { "matches": [ "*:\/\/github.com\/*" ], "js": [ "lib\/jquery.min.js", "lib\/list.min.js", "content-scripts\/stars.js" ], "css": [], "run_at": "document_end" } ] } |