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…
Qu'est-ce que LOC ?
LOC est une extension Chrome développée par Unknown, et sa fonction principale est "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…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LOC
Téléchargez les fichiers d'extension LOC au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | LOC |
ID | lmhpcmdjibbhkebfmbomehkfccllefnd |
URL Officiel | https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd |
Description | 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… |
Taille du Fichier | 34.04 KB |
Nombre d'Installations | 1,032 |
Version Actuelle | 0.2 |
Dernière Mise à Jour | 2019-06-16 |
Date de Publication | 2019-06-16 |
Évaluation | 2.50/5 Total 2 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } } |