Golang syntax highlighter

Highlight syntax in golang official docs and blog

What is Golang syntax highlighter?

Golang syntax highlighter is a Chrome extension developed by Dominik, and its main feature is "Highlight syntax in golang official docs and blog".

Extension Screenshots

screenshot
screenshot

Download Golang syntax highlighter Extension CRX File

Download Golang syntax highlighter 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

                        Add syntax highlighting to code snippets on https://golang.org/doc/ and https://blog.golang.org/                    

Extension Basic Information

Name Golang syntax highlighter Golang syntax highlighter
ID oidklnelabnmlhpcmmpmffjalkpeecko
Official URL https://chromewebstore.google.com/detail/golang-syntax-highlighter/oidklnelabnmlhpcmmpmffjalkpeecko
Description Highlight syntax in golang official docs and blog
File Size 7.55 KB
Installation Count 134
Current Version 1.2
Last Updated 2019-03-13
Publish Date 2019-03-13
Rating 5.00/5 Total 3 Ratings
Developer Dominik
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Golang syntax highlighter",
    "version": "1.2",
    "description": "Highlight syntax in golang official docs and blog",
    "manifest_version": 2,
    "content_scripts": [
        {
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/golang.org\/doc\/*",
                "https:\/\/blog.golang.org\/*"
            ]
        }
    ]
}