GitHub Gloc
Gives you approximate count of lines of code on GitHub
Apa itu GitHub Gloc?
GitHub Gloc adalah ekstensi Chrome yang dikembangkan oleh https://kas-elvirov.com, dan fitur utamanya adalah "Gives you approximate count of lines of code on GitHub".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi GitHub Gloc
Unduh file ekstensi GitHub Gloc dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | GitHub Gloc |
ID | kaodcnpebhdbpaeeemkiobcokcnegdki |
URL Resmi | https://chromewebstore.google.com/detail/github-gloc/kaodcnpebhdbpaeeemkiobcokcnegdki |
Deskripsi | Gives you approximate count of lines of code on GitHub |
Ukuran File | 93.58 KB |
Jumlah Instalasi | 10,000 |
Versi Saat Ini | 8.2.67 |
Terakhir Diperbarui | 2023-02-06 |
Tanggal Publikasi | 2020-06-07 |
Penilaian | 4.38/5 Total 52 Penilaian |
Pengembang | https://kas-elvirov.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/kas-elvirov/gloc |
URL Halaman Bantuan | https://github.com/kas-elvirov/gloc/issues |
URL Halaman Kebijakan Privasi | https://github.com/kas-elvirov/gloc/blob/master/PRIVACY.md |
Bahasa yang Didukung | 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" } } |