GifHub

Insert GIFs from Giphy.com into GitHub comments

Apa itu GifHub?

GifHub adalah ekstensi Chrome yang dikembangkan oleh Andrew Levine, dan fitur utamanya adalah "Insert GIFs from Giphy.com into GitHub comments".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GifHub

Unduh file ekstensi GifHub 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

                        GitHub is awesome. GIFs are awesome.

1.0.8 (May 24, 2016): Fix bug preventing button from showing when editing a comment that was just added on a diff. Thanks to Paul Molluzzo for the fix.
1.0.7 (April 24, 2016): Improve page detection to prevent issues on non GH or GH Enterprise sites
1.0.6 (April 20, 2016): Fix issue caused by change in GitHub's JS                    

Informasi Dasar Ekstensi

Nama GifHub GifHub
ID lponagpckglibniamicamklhfkoebpeb
URL Resmi https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb
Deskripsi Insert GIFs from Giphy.com into GitHub comments
Ukuran File 25.84 KB
Jumlah Instalasi 452
Versi Saat Ini 1.0.8
Terakhir Diperbarui 2016-05-24
Tanggal Publikasi 2016-05-24
Penilaian 3.29/5 Total 7 Penilaian
Pengembang Andrew Levine
Tipe Pembayaran free
Situs Ekstensi https://github.com/DrewML/GifHub
URL Halaman Bantuan https://github.com/DrewML/GifHub/blob/master/README.md
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GifHub",
    "version": "1.0.8",
    "description": "Insert GIFs from Giphy.com into GitHub comments",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "bundle.js",
        "extension.css"
    ],
    "permissions": [
        "https:\/\/api.giphy.com\/v1\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "peristent": false
    }
}