gitphy

Put gifs in your Github issues and pull requests without leaving the textarea

Apa itu gitphy?

gitphy adalah ekstensi Chrome yang dikembangkan oleh https://kevinformatics.com, dan fitur utamanya adalah "Put gifs in your Github issues and pull requests without leaving the textarea".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi gitphy

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

                        Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax ![](gif: ) to search Giphy for gifs.

Open source at: https://github.com/kevinwuhoo/gitphy.                    

Informasi Dasar Ekstensi

Nama gitphy gitphy
ID kbnbfpmphfpcndlokabhemafnjhkcffc
URL Resmi https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc
Deskripsi Put gifs in your Github issues and pull requests without leaving the textarea
Ukuran File 86.94 KB
Jumlah Instalasi 38
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2020-10-15
Tanggal Publikasi 2020-07-24
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://kevinformatics.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://kevinformatics.com/gitphy
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gitphy",
    "version": "1.1.1",
    "manifest_version": 2,
    "description": "Put gifs in your Github issues and pull requests without leaving the textarea",
    "author": "Kevin Wu",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "index.css"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/*.giphy.com\/*"
    ],
    "web_accessible_resources": [
        "giphy-attribution.png"
    ]
}