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…

Τι είναι το LOC;

Το LOC είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης LOC

Λήψη αρχείων επέκτασης LOC σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα LOC LOC
ID lmhpcmdjibbhkebfmbomehkfccllefnd
Επίσημο URL https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd
Περιγραφή 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…
Μέγεθος Αρχείου 34.04 KB
Αριθμός Εγκαταστάσεων 1,032
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2019-06-16
Ημερομηνία Δημοσίευσης 2019-06-16
Αξιολόγηση 2.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
        ]
    }
}