GifHub
Insert GIFs from Giphy.com into GitHub comments
GifHubとは何ですか?
GifHubはAndrew Levineによって開発されたChromeの拡張機能で、その主な機能は「Insert GIFs from Giphy.com into GitHub comments」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| ID | lponagpckglibniamicamklhfkoebpeb |
| 公式URL | 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
}
} | |