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 } } |