github syntax

Adds syntax highlighting to github's split diff pull request view.

Wat is github syntax?

github syntax is een Chrome-extensie ontwikkeld door Dan Vanderkam, en de belangrijkste functie is "Adds syntax highlighting to github's split diff pull request view.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie github syntax

Download github syntax-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

                        This extension adds syntax highlighting to github's split diff pull request view using highlight.js. After you install it, you should immediately see syntax coloring whenever you visit the github pull request "Files" page with split diffs enabled.

Note: only works for public repositories at the moment.                    

Basisinformatie over de Extensie

Naam github syntax github syntax
ID klamohcglknfmhpjifcpckncknpbhkol
Officiële URL https://chromewebstore.google.com/detail/github-syntax/klamohcglknfmhpjifcpckncknpbhkol
Beschrijving Adds syntax highlighting to github's split diff pull request view.
Bestandsgrootte 167 KB
Aantal Installaties 37
Huidige Versie 0.3.0
Laatst Bijgewerkt 2014-09-23
Publicatiedatum 2014-09-23
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Dan Vanderkam
Betalingswijze free
Extensiewebsite https://github.com/danvk/github-syntax
Help Pagina-URL https://github.com/danvk/github-syntax/issues
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "github syntax",
    "version": "0.3.0",
    "manifest_version": 2,
    "icons": {
        "128": "icon-128.png"
    },
    "description": "Adds syntax highlighting to github's split diff pull request view.",
    "content_scripts": [
        {
            "js": [
                "lib\/jquery.min.js",
                "codediff.js",
                "difflib.js",
                "jquery.appear.js",
                "highlightjs\/highlight.pack.js",
                "highlight.user.js"
            ],
            "css": [
                "highlight.css",
                "highlightjs\/styles\/googlecode.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle"
        }
    ]
}