GitHub Inline SVG

Shows an inline preview of SVG files on GitHub

Apa itu GitHub Inline SVG?

GitHub Inline SVG adalah ekstensi Chrome yang dikembangkan oleh Zach Bruggeman, dan fitur utamanya adalah "Shows an inline preview of SVG files on GitHub".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GitHub Inline SVG

Unduh file ekstensi GitHub Inline SVG dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama GitHub Inline SVG GitHub Inline SVG
ID jbfbnojdibndlopjgadibhcphchdbfkh
URL Resmi https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh
Deskripsi Shows an inline preview of SVG files on GitHub
Ukuran File 10.42 KB
Jumlah Instalasi 289
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2014-08-26
Tanggal Publikasi 2014-08-26
Penilaian 5.00/5 Total 3 Penilaian
Pengembang Zach Bruggeman
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/remixz/gh-inline-svg
URL Halaman Bantuan https://github.com/remixz/gh-inline-svg/issues
Bahasa yang Didukung 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"
    }
}