Syntax Highlight Code Blocks

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

什麼是Syntax Highlight Code Blocks?

Syntax Highlight Code Blocks是由Mackenzie Zastrow開發的Chrome擴展程式,該擴展的主要功能是“Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.”。

擴展截圖

screenshot
screenshot
screenshot

下載Syntax Highlight Code Blocks擴展crx文件

下載Syntax Highlight Code Blocks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Syntax Highlight Code Blocks Syntax Highlight Code Blocks
ID hpoobjomnbgfehbigjdghibjddfpoigp
官方網址 https://chromewebstore.google.com/detail/syntax-highlight-code-blo/hpoobjomnbgfehbigjdghibjddfpoigp
簡介 Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.
檔案大小 24.75 KB
安裝次數 1,000
目前版本 1.4
更新時間 2015-05-07
上架時間 2015-05-07
評分 3.25/5 共 8 次評分
開發者 Mackenzie Zastrow
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/zastrowm/Syntax-Highlight-Code-Blocks
支援的語言 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
}