github syntax
Adds syntax highlighting to github's split diff pull request view.
What is github syntax?
github syntax is a Chrome extension developed by Dan Vanderkam, and its main feature is "Adds syntax highlighting to github's split diff pull request view.".
Extension Screenshots
Download github syntax Extension CRX File
Download github syntax extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | github syntax |
ID | klamohcglknfmhpjifcpckncknpbhkol |
Official URL | https://chromewebstore.google.com/detail/github-syntax/klamohcglknfmhpjifcpckncknpbhkol |
Description | Adds syntax highlighting to github's split diff pull request view. |
File Size | 167 KB |
Installation Count | 37 |
Current Version | 0.3.0 |
Last Updated | 2014-09-23 |
Publish Date | 2014-09-23 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Dan Vanderkam |
Payment Type | free |
Extension Website | https://github.com/danvk/github-syntax |
Help Page URL | https://github.com/danvk/github-syntax/issues |
Supported Languages | 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" } ] } |