GitHub SLOC
Display SLOC on GitHub
Wat is GitHub SLOC?
GitHub SLOC is een Chrome-extensie ontwikkeld door martianyi, en de belangrijkste functie is "Display SLOC on GitHub".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub SLOC
Download GitHub SLOC-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        Display source lines of code on GitHub. See website for more.                     Basisinformatie over de Extensie
| Naam |   |  
| ID | fkjjjamhihnjmihibcmdnianbcbccpnn | 
| Officiële URL | https://chromewebstore.google.com/detail/github-sloc/fkjjjamhihnjmihibcmdnianbcbccpnn | 
| Beschrijving | Display SLOC on GitHub | 
| Bestandsgrootte | 826 KB | 
| Aantal Installaties | 470 | 
| Huidige Versie | 1.4.0 | 
| Laatst Bijgewerkt | 2020-08-20 | 
| Publicatiedatum | 2018-09-09 | 
| Beoordeling | 3.83/5 Totaal 6 Beoordelingen | 
| Ontwikkelaar | martianyi | 
| [email protected] | |
| Betalingswijze | free | 
| Extensiewebsite | https://github.com/martianyi/github-sloc | 
| Help Pagina-URL | https://github.com/martianyi/github-sloc/issues | 
| Ondersteunde Talen | 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\/*"
    ]
}  |  |