Github Download Button
Adds a download button on Github files
Was ist Github Download Button?
Github Download Button ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Adds a download button on Github files".
Erweiterungsscreenshots
Github Download Button-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github Download Button-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
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jheiohemapejddjdnfnhldcfhmklgmdg |
| Offizielle URL | https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg |
| Beschreibung | Adds a download button on Github files |
| Dateigröße | 10.63 KB |
| Installationsanzahl | 263 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2021-12-14 |
| Veröffentlichungsdatum | 2021-12-13 |
| Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
| Entwickler | Unknown |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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\/*"
]
} | |