GitHub Gloc
Gives you approximate count of lines of code on GitHub
Cos'è GitHub Gloc?
GitHub Gloc è un'estensione di Chrome sviluppata da https://kas-elvirov.com, e la sua funzione principale è "Gives you approximate count of lines of code on GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Gloc
Scarica i file di estensione GitHub Gloc in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GitHub Gloc |
ID | kaodcnpebhdbpaeeemkiobcokcnegdki |
URL Ufficiale | https://chromewebstore.google.com/detail/github-gloc/kaodcnpebhdbpaeeemkiobcokcnegdki |
Descrizione | Gives you approximate count of lines of code on GitHub |
Dimensione del File | 93.58 KB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 8.2.67 |
Ultimo Aggiornamento | 2023-02-06 |
Data di Pubblicazione | 2020-06-07 |
Valutazione | 4.38/5 Totale 52 Valutazioni |
Sviluppatore | https://kas-elvirov.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kas-elvirov/gloc |
URL della Pagina di Aiuto | https://github.com/kas-elvirov/gloc/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/kas-elvirov/gloc/blob/master/PRIVACY.md |
Lingue Supportate | 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" } } |