gitphy

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

gitphyとは何ですか?

gitphyはhttps://kevinformatics.comによって開発されたChromeの拡張機能で、その主な機能は「Put gifs in your Github issues and pull requests without leaving the textarea」です。

拡張機能のスクリーンショット

screenshot

gitphy拡張機能のCRXファイルをダウンロード

gitphy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 gitphy gitphy
ID kbnbfpmphfpcndlokabhemafnjhkcffc
公式URL https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc
説明 Put gifs in your Github issues and pull requests without leaving the textarea
ファイルサイズ 86.94 KB
インストール数 38
現在のバージョン 1.1.1
最終更新日 2020-10-15
公開日 2020-07-24
評価 5.00/5 合計 2 レビュー
開発者 https://kevinformatics.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://kevinformatics.com/gitphy
対応言語 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"
    ]
}