GitHub Inline SVG

Shows an inline preview of SVG files on GitHub

GitHub Inline SVGคืออะไร?

GitHub Inline SVG เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zach Bruggeman และคุณลักษณะหลักของมันคือ "Shows an inline preview of SVG files on GitHub"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Inline SVG

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

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

                        Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!                    

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

ชื่อ GitHub Inline SVG GitHub Inline SVG
ID jbfbnojdibndlopjgadibhcphchdbfkh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh
คำอธิบาย Shows an inline preview of SVG files on GitHub
ขนาดไฟล์ 10.42 KB
จำนวนการติดตั้ง 289
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2014-08-26
วันที่เผยแพร่ 2014-08-26
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Zach Bruggeman
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/remixz/gh-inline-svg
URL หน้าช่วยเหลือ https://github.com/remixz/gh-inline-svg/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Inline SVG",
    "description": "Shows an inline preview of SVG files on GitHub",
    "version": "0.0.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ],
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}