Syntax Highlighter

This extension enables syntax highlighting for every pre element on any page

What is Syntax Highlighter?

Syntax Highlighter is a Chrome extension developed by martinhodler, and its main feature is "This extension enables syntax highlighting for every pre element on any page".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Syntax Highlighter Extension CRX File

Download 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

 Syntax Highlighter lets you highlight any 
 tag on any website. To highlight these it uses highlightjs  and its themes.                    

Extension Basic Information

Name Syntax Highlighter Syntax Highlighter
ID glelbammondmpalmahoabfpchnoonnpk
Official URL https://chrome.google.com/webstore/detail/syntax-highlighter/glelbammondmpalmahoabfpchnoonnpk
Description This extension enables syntax highlighting for every pre element on any page
File Size 59.13 KB
Installation Count 819
Current Version 1.0.2
Last Updated 2016-10-14
Publish Date 2016-10-14
Rating 3.86/5 Total 7 Ratings
Developer martinhodler
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Syntax Highlighter",
    "description": "This extension enables syntax highlighting for every pre element on any page",
    "version": "1.0.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/highlight.pack.js",
                "content\/content.js"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background\/highlighter.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    }
}