Github files download
Extension to download Githup single files without downloading the whole repo
What is Github files download?
Github files download is a Chrome extension developed by Unknown, and its main feature is "Extension to download Githup single files without downloading the whole repo".
Extension Screenshots
Download Github files download Extension CRX File
Download Github files 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
Extension to download Github single files without downloading the whole repository , by right clicking the Github file link you will see an option to download the file.
Extension Basic Information
Name | Github files download |
ID | lhfgdmnajofjhhokaobpkkgfjogknfbo |
Official URL | https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo |
Description | Extension to download Githup single files without downloading the whole repo |
File Size | 828 KB |
Installation Count | 47 |
Current Version | 0.0.1 |
Last Updated | 2020-03-25 |
Publish Date | 2020-03-25 |
Developer | Unknown |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.1", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "icons\/icon-16.png", "128": "icons\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "tabs", "storage", "http:\/\/github.com\/*", "https:\/\/github.com\/*", "contextMenus", "downloads" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "scripts\/contentscript.js" ], "css": [], "run_at": "document_end", "all_frames": false } ], "web_accessible_resources": [], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |