Gist Markdown Preview

helps to preview the markdown while creating a markdown gist

Gist Markdown Previewคืออะไร?

Gist Markdown Preview เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://blog.revathskumar.com และคุณลักษณะหลักของมันคือ "helps to preview the markdown while creating a markdown gist"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gist Markdown Preview

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

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

                        The option is visible only when you choose the filetype as markdown or your filename ends with .md

* updated for latest changes in gist.github.com design

CHANGES on 2017/04/12

* updates to latest github changes
* Removed the css from loading and breaking http://gist.github.com
* Fixes the issue with appearing multiple preview buttons on multiple markdown files

CHANGES on 2018/01/03

* updates to latest github changes

CHANGES on 2018/01/20

* Support for Github flavoured markdown                    

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

ชื่อ Gist Markdown Preview Gist Markdown Preview
ID icgfmklfpokeihbnnjjdpnjndickgpkh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gist-markdown-preview/icgfmklfpokeihbnnjjdpnjndickgpkh
คำอธิบาย helps to preview the markdown while creating a markdown gist
ขนาดไฟล์ 139 KB
จำนวนการติดตั้ง 445
เวอร์ชันปัจจุบัน 2.0.3
อัปเดตครั้งล่าสุด 2018-01-19
วันที่เผยแพร่ 2018-01-19
คะแนน 4.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา https://blog.revathskumar.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/revathskumar/gist-markdown-preview
URL หน้าช่วยเหลือ https://github.com/revathskumar/gist-markdown-preview/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gist Markdown Preview",
    "version": "2.0.3",
    "description": "helps to preview the markdown while creating a markdown gist",
    "manifest_version": 2,
    "icons": {
        "16": "img\/gist16.png",
        "48": "img\/gist48.png",
        "128": "img\/gist128.png"
    },
    "homepage_url": "https:\/\/github.com\/revathskumar\/gist-markdown-preview",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/",
                "https:\/\/gist.github.com\/*\/*\/edit"
            ],
            "js": [
                "js\/marked.js",
                "gist_markdown_preview.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "https:\/\/gist.github.com\/"
    ]
}