LGTM for Github
This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
LGTM for Githubคืออะไร?
LGTM for Github เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://thetechtime.com และคุณลักษณะหลักของมันคือ "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LGTM for Github
ดาวน์โหลดไฟล์ส่วนขยาย LGTM for Github ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Source code: https://github.com/geekrax/lgtm-chrome-extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | LGTM for Github |
ID | ckjpjogecpcibagiggbejclbihmochpn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn |
คำอธิบาย | This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut. |
ขนาดไฟล์ | 32.36 KB |
จำนวนการติดตั้ง | 19 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2017-03-18 |
วันที่เผยแพร่ | 2017-03-17 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://thetechtime.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LGTM for Github", "description": "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.", "version": "1.1", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "content\/content.js" ] } ], "options_page": "options\/options.html", "permissions": [ "https:\/\/github.com\/", "storage" ] } |