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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mackenzie Zastrow และคุณลักษณะหลักของมันคือ "Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Syntax Highlight Code Blocks

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
}