GitHub Gloc
Gives you approximate count of lines of code on GitHub
GitHub Glocคืออะไร?
GitHub Gloc เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kas-elvirov.com และคุณลักษณะหลักของมันคือ "Gives you approximate count of lines of code on GitHub"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Gloc
ดาวน์โหลดไฟล์ส่วนขยาย GitHub Gloc ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Works for public and private repositories. Gives you approximate count of lines of code from: - project detail page, - user's repositories, - organization page, - search results page, - trending page.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitHub Gloc |
ID | kaodcnpebhdbpaeeemkiobcokcnegdki |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-gloc/kaodcnpebhdbpaeeemkiobcokcnegdki |
คำอธิบาย | Gives you approximate count of lines of code on GitHub |
ขนาดไฟล์ | 93.58 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 8.2.67 |
อัปเดตครั้งล่าสุด | 2023-02-06 |
วันที่เผยแพร่ | 2020-06-07 |
คะแนน | 4.38/5 รวมทั้งหมด 52 คะแนน |
ผู้พัฒนา | https://kas-elvirov.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/kas-elvirov/gloc |
URL หน้าช่วยเหลือ | https://github.com/kas-elvirov/gloc/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/kas-elvirov/gloc/blob/master/PRIVACY.md |
ภาษาที่รองรับ | de,en,en-GB,en-US,fr,nl,es-419,pl,pt-BR,bg,ru,uk,ar,zh-CN,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "__MSG_name__", "short_name": "__MSG_shortName__", "author": "__MSG_author__", "description": "__MSG_description__", "version": "8.2.67", "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "index.html", "default_title": "Github Gloc" }, "options_ui": { "page": "options.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "src\/inject.js" ] } ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "permissions": [ "storage", "*:\/\/*.github.com\/*" ], "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "64": "img\/icon64.png", "128": "img\/icon128.png" } } |