Syntax Highlight Code Blocks

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

O que é Syntax Highlight Code Blocks?

Syntax Highlight Code Blocks é uma extensão do Chrome desenvolvida por Mackenzie Zastrow, e sua principal característica é "Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Syntax Highlight Code Blocks

Baixe arquivos de extensão Syntax Highlight Code Blocks no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Syntax Highlight Code Blocks Syntax Highlight Code Blocks
ID hpoobjomnbgfehbigjdghibjddfpoigp
URL Oficial https://chromewebstore.google.com/detail/syntax-highlight-code-blo/hpoobjomnbgfehbigjdghibjddfpoigp
Descrição Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.
Tamanho do Arquivo 24.75 KB
Contagem de Instalações 1,000
Versão Atual 1.4
Última Atualização 2015-05-07
Data de Publicação 2015-05-07
Classificação 3.25/5 Total de 8 Avaliações
Desenvolvedor Mackenzie Zastrow
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/zastrowm/Syntax-Highlight-Code-Blocks
Idiomas Suportados 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
}