Syntax Highlight Code Blocks

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

Cos'è Syntax Highlight Code Blocks?

Syntax Highlight Code Blocks è un'estensione di Chrome sviluppata da Mackenzie Zastrow, e la sua funzione principale è "Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Syntax Highlight Code Blocks

Scarica i file di estensione Syntax Highlight Code Blocks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Syntax Highlight Code Blocks Syntax Highlight Code Blocks
ID hpoobjomnbgfehbigjdghibjddfpoigp
URL Ufficiale https://chromewebstore.google.com/detail/syntax-highlight-code-blo/hpoobjomnbgfehbigjdghibjddfpoigp
Descrizione Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.
Dimensione del File 24.75 KB
Conteggio Installazioni 1,000
Versione Corrente 1.4
Ultimo Aggiornamento 2015-05-07
Data di Pubblicazione 2015-05-07
Valutazione 3.25/5 Totale 8 Valutazioni
Sviluppatore Mackenzie Zastrow
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/zastrowm/Syntax-Highlight-Code-Blocks
Lingue Supportate 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
}