GitHub SLOC

Display SLOC on GitHub

Hvad er GitHub SLOC?

GitHub SLOC er en Chrome-udvidelse udviklet af martianyi, og dens hovedfunktion er "Display SLOC on GitHub".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download GitHub SLOC-udvidelses-CRX-fil

Download GitHub SLOC-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn GitHub SLOC GitHub SLOC
ID fkjjjamhihnjmihibcmdnianbcbccpnn
Officiel URL https://chromewebstore.google.com/detail/github-sloc/fkjjjamhihnjmihibcmdnianbcbccpnn
Beskrivelse Display SLOC on GitHub
Filstørrelse 826 KB
Antal Installationer 470
Nuværende Version 1.4.0
Senest Opdateret 2020-08-20
Udgivelsesdato 2018-09-09
Bedømmelse 3.83/5 Samlet 6 Bedømmelser
Udvikler martianyi
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/martianyi/github-sloc
Hjælpeside-URL https://github.com/martianyi/github-sloc/issues
Understøttede Sprog 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\/*"
    ]
}