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…
Cos'è LOC?
LOC è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "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…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione LOC
Scarica i file di estensione LOC 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
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.
Informazioni di Base sull'Estensione
Nome | LOC |
ID | lmhpcmdjibbhkebfmbomehkfccllefnd |
URL Ufficiale | https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd |
Descrizione | 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… |
Dimensione del File | 34.04 KB |
Conteggio Installazioni | 1,032 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2019-06-16 |
Data di Pubblicazione | 2019-06-16 |
Valutazione | 2.50/5 Totale 2 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } } |