GifHub

Insert GIFs from Giphy.com into GitHub comments

什麼是GifHub?

GifHub是由Andrew Levine開發的Chrome擴展程式,該擴展的主要功能是“Insert GIFs from Giphy.com into GitHub comments”。

擴展截圖

screenshot

下載GifHub擴展crx文件

下載GifHub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 GifHub GifHub
ID lponagpckglibniamicamklhfkoebpeb
官方網址 https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb
簡介 Insert GIFs from Giphy.com into GitHub comments
檔案大小 25.84 KB
安裝次數 452
目前版本 1.0.8
更新時間 2016-05-24
上架時間 2016-05-24
評分 3.29/5 共 7 次評分
開發者 Andrew Levine
付費類型 free
擴展官網 https://github.com/DrewML/GifHub
說明頁面URL https://github.com/DrewML/GifHub/blob/master/README.md
支援的語言 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
    }
}