Github file download
Add a download button for Github and gist
Github file download là gì?
Github file download là một tiện ích mở rộng Chrome được phát triển bởi litefeel, và tính năng chính của nó là "Add a download button for Github and gist".
Ả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 Github file download
Tải xuống các tệp mở rộng Github file download 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
Add a download button for Github and gist
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
URL Chính Thức | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
Mô tả | Add a download button for Github and gist |
Kích Thước Tệp | 50.94 KB |
Số Lần Cài Đặt | 387 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2015-11-20 |
Ngày Phát Hành | 2015-11-20 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | litefeel |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/lite3/github-file-download |
URL Trang Trợ Giúp | https://github.com/lite3/github-file-download |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github file download", "description": "Add a download button for Github and gist", "version": "1.5", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs", "https:\/\/github.com\/", "https:\/\/gist.github.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "jquery.min.js", "download-button.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "offline_enabled": true, "homepage_url": "https:\/\/github.com\/lite3\/github-file-download\/" } |