Github file download
Add a download button for Github and gist
Was ist Github file download?
Github file download ist eine Chrome-Erweiterung, die von litefeel entwickelt wurde, und ihr Hauptmerkmal ist "Add a download button for Github and gist".
Erweiterungsscreenshots
Github file download-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github file 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
Add a download button for Github and gist
Grundlegende Informationen zur Erweiterung
Name | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
Offizielle URL | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
Beschreibung | Add a download button for Github and gist |
Dateigröße | 50.94 KB |
Installationsanzahl | 387 |
Aktuelle Version | 1.5 |
Letztes Update | 2015-11-20 |
Veröffentlichungsdatum | 2015-11-20 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | litefeel |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/lite3/github-file-download |
Hilfeseite URL | https://github.com/lite3/github-file-download |
Unterstützte Sprachen | 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\/" } |