Medium Code Highlighter

Add code syntax highlighting to Medium articles

Medium Code Highlighterคืออะไร?

Medium Code Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://macbaler.me และคุณลักษณะหลักของมันคือ "Add code syntax highlighting to Medium articles"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Medium Code Highlighter

ดาวน์โหลดไฟล์ส่วนขยาย Medium Code Highlighter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

 A chrome browser extension which adds code syntax highlighting to Medium articles. Forget the black-on-gray blobs of code in articles which don't embed gists or images of code! - Adds code syntax highlighting to '
' blocks in Medium articles. - Highlighting theme is selectable and can be changed on-the-fly (via extension popup upon icon-click) from a handful of popular themes. -- Theme preference links to Chrome account. - Works on all Medium articles, regardless of domain (i.e. 'medium.com', 'medium.freecodecamp.org', 'hackingandslacking.com', etc.) *Note* Due to Medium's innate formatting, code blocks are split line-by-line into '
' blocks, meaning the 'highlightjs' language syntax recognizer may sometimes have trouble, but for the most part it works acceptably well.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Medium Code Highlighter Medium Code Highlighter
ID apdaagmhepellbjjbnaljaocodjjjjfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/medium-code-highlighter/apdaagmhepellbjjbnaljaocodjjjjfd
คำอธิบาย Add code syntax highlighting to Medium articles
ขนาดไฟล์ 86.32 KB
จำนวนการติดตั้ง 391
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2019-07-27
วันที่เผยแพร่ 2019-07-23
คะแนน 4.33/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา https://macbaler.me
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Medium Code Highlighter",
    "version": "1.0.2",
    "description": "Add code syntax highlighting to Medium articles",
    "author": "Mac Baler",
    "content_security_policy": "default-src 'self'",
    "icons": {
        "16": "icons\/16active.png",
        "32": "icons\/32active.png",
        "48": "icons\/48active.png",
        "128": "icons\/128active.png"
    },
    "page_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/16disabled.png",
            "32": "icons\/32disabled.png",
            "48": "icons\/48disabled.png",
            "128": "icons\/128disabled.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "highlightjs\/highlight.pack.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "highlightjs\/styles\/*.css"
    ]
}