LOC
This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This…
LOCคืออะไร?
LOC เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LOC
ดาวน์โหลดไฟล์ส่วนขยาย LOC ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This extension only works on the top level page of the repo. That is, https://github.com/organization/repo-name/directory-name will show nothing, but https://github.com/organization/repo-name will show the total LOC for the entire repo.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | LOC |
ID | lmhpcmdjibbhkebfmbomehkfccllefnd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd |
คำอธิบาย | This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This… |
ขนาดไฟล์ | 34.04 KB |
จำนวนการติดตั้ง | 1,032 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2019-06-16 |
วันที่เผยแพร่ | 2019-06-16 |
คะแนน | 2.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LOC", "version": "0.2", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*\/*" ], "js": [ "jquery-core.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] } } |