Github file download
Add a download button for Github and gist
What is Github file download?
Github file download is a Chrome extension developed by litefeel, and its main feature is "Add a download button for Github and gist".
Extension Screenshots
Download Github file download Extension CRX File
Download Github file download extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Add a download button for Github and gist
Extension Basic Information
Name | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
Official URL | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
Description | Add a download button for Github and gist |
File Size | 50.94 KB |
Installation Count | 387 |
Current Version | 1.5 |
Last Updated | 2015-11-20 |
Publish Date | 2015-11-20 |
Rating | 3.67/5 Total 3 Ratings |
Developer | litefeel |
Payment Type | free |
Extension Website | https://github.com/lite3/github-file-download |
Help Page URL | https://github.com/lite3/github-file-download |
Supported Languages | 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\/" } |