GitHub SLOC

Display SLOC on GitHub

Qu'est-ce que GitHub SLOC ?

GitHub SLOC est une extension Chrome développée par martianyi, et sa fonction principale est "Display SLOC on GitHub".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension GitHub SLOC

Téléchargez les fichiers d'extension GitHub SLOC 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

                        Display source lines of code on GitHub. See website for more.                    

Informations de Base sur l'Extension

Nom GitHub SLOC GitHub SLOC
ID fkjjjamhihnjmihibcmdnianbcbccpnn
URL Officiel https://chromewebstore.google.com/detail/github-sloc/fkjjjamhihnjmihibcmdnianbcbccpnn
Description Display SLOC on GitHub
Taille du Fichier 826 KB
Nombre d'Installations 470
Version Actuelle 1.4.0
Dernière Mise à Jour 2020-08-20
Date de Publication 2018-09-09
Évaluation 3.83/5 Total 6 Évaluations
Développeur martianyi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/martianyi/github-sloc
URL de la Page d'Aide https://github.com/martianyi/github-sloc/issues
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub SLOC",
    "version": "1.4.0",
    "description": "Display SLOC on GitHub",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "options.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/inject.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "*:\/\/*.github.com\/*"
    ]
}