Github files download
Extension to download Githup single files without downloading the whole repo
Was ist Github files download?
Github files download ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Extension to download Githup single files without downloading the whole repo".
Erweiterungsscreenshots
Github files download-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github files download-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lhfgdmnajofjhhokaobpkkgfjogknfbo |
| Offizielle URL | https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo |
| Beschreibung | Extension to download Githup single files without downloading the whole repo |
| Dateigröße | 828 KB |
| Installationsanzahl | 47 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2020-03-25 |
| Veröffentlichungsdatum | 2020-03-25 |
| Entwickler | Unknown |
| Zahlungsart | free |
| Unterstützte Sprachen | 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'"
} | |