GifHub
Insert GIFs from Giphy.com into GitHub comments
GifHub là gì?
GifHub là một tiện ích mở rộng Chrome được phát triển bởi Andrew Levine, và tính năng chính của nó là "Insert GIFs from Giphy.com into GitHub comments".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GifHub
Tải xuống các tệp mở rộng GifHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | lponagpckglibniamicamklhfkoebpeb |
URL Chính Thức | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
Mô tả | Insert GIFs from Giphy.com into GitHub comments |
Kích Thước Tệp | 25.84 KB |
Số Lần Cài Đặt | 452 |
Phiên Bản Hiện Tại | 1.0.8 |
Cập Nhật Lần Cuối | 2016-05-24 |
Ngày Phát Hành | 2016-05-24 |
Đánh Giá | 3.29/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Andrew Levine |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/DrewML/GifHub |
URL Trang Trợ Giúp | https://github.com/DrewML/GifHub/blob/master/README.md |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |