Syntax Highlight Code Blocks

Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.

Was ist Syntax Highlight Code Blocks?

Syntax Highlight Code Blocks ist eine Chrome-Erweiterung, die von Mackenzie Zastrow entwickelt wurde, und ihr Hauptmerkmal ist "Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Syntax Highlight Code Blocks-Erweiterungs-CRX-Datei herunterladen

Laden Sie Syntax Highlight Code Blocks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Some blogs/websites just put snippets of code inside of a pre > code block without syntax highlighting.  This is alright, but for developers reading the code, it would be helpful if it actually included syntax highlighting.  This extension, on activation via the context menu, finds all pre > code blocks an highlights them with highlight.js (https://highlightjs.org/).

Icons from Simple Icon (http://simpleicon.com/code-optimization.html) and Iconspedia (http://www.iconspedia.com/icon/source-code-icon-22943.html)

 - Version 1.4 adds support for converting multiline pres (w/no code block)
 - Version 1.3 adds support for msdn.microsoft.com magazine code snippets
 - Version 1.2 adds support for msdn.microsoft.com library simple code snippets                    

Grundlegende Informationen zur Erweiterung

Name Syntax Highlight Code Blocks Syntax Highlight Code Blocks
ID hpoobjomnbgfehbigjdghibjddfpoigp
Offizielle URL https://chromewebstore.google.com/detail/syntax-highlight-code-blo/hpoobjomnbgfehbigjdghibjddfpoigp
Beschreibung Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.
Dateigröße 24.75 KB
Installationsanzahl 1,000
Aktuelle Version 1.4
Letztes Update 2015-05-07
Veröffentlichungsdatum 2015-05-07
Bewertung 3.25/5 Insgesamt 8 Bewertungen
Entwickler Mackenzie Zastrow
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/zastrowm/Syntax-Highlight-Code-Blocks
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Syntax Highlight Code Blocks",
    "version": "1.4",
    "description": "Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.",
    "author": "Mackenzie Zastrow",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}