Github Download Button
Adds a download button on Github files
What is Github Download Button?
Github Download Button is a Chrome extension developed by Unknown, and its main feature is "Adds a download button on Github files".
Extension Screenshots
Download Github Download Button Extension CRX File
Download Github Download Button 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
When you install this extension, a download button will be added to every GitHub file. Downloading files on GitHub it's a pain and this extension makes the whole process easier
Extension Basic Information
Name | Github Download Button |
ID | jheiohemapejddjdnfnhldcfhmklgmdg |
Official URL | https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg |
Description | Adds a download button on Github files |
File Size | 10.63 KB |
Installation Count | 263 |
Current Version | 1.0.0 |
Last Updated | 2021-12-14 |
Publish Date | 2021-12-13 |
Rating | 3.67/5 Total 3 Ratings |
Developer | Unknown |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Download Button", "version": "1.0.0", "description": "Adds a download button on Github files", "icons": { "19": "icon_19.png", "48": "icon_48.png", "96": "icon_96.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*" ], "js": [ "main.js" ] } ], "permissions": [ "*:\/\/*.github.com\/*", "*:\/\/raw.githubusercontent.com\/*" ] } |