Github file download
Add a download button for Github and gist
什么是Github file download?
Github file download是由litefeel开发的Chrome扩展程序,该扩展的主要功能是“Add a download button for Github and gist”。
扩展截图
下载Github file download扩展crx文件
下载Github file download扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add a download button for Github and gist
扩展基本信息
名称 | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
官方URL | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
简介 | Add a download button for Github and gist |
文件大小 | 50.94 KB |
安装次数 | 387 |
当前版本 | 1.5 |
更新时间 | 2015-11-20 |
上架时间 | 2015-11-20 |
评分 | 3.67/5 共3次评分 |
开发者 | litefeel |
付费类型 | free |
扩展官网 | https://github.com/lite3/github-file-download |
帮助页面URL | https://github.com/lite3/github-file-download |
支持的语言 | 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\/" } |