Github file download
Add a download button for Github and gist
Qu'est-ce que Github file download ?
Github file download est une extension Chrome développée par litefeel, et sa fonction principale est "Add a download button for Github and gist".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Github file download
Téléchargez les fichiers d'extension Github file download au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Add a download button for Github and gist
Informations de Base sur l'Extension
Nom | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
URL Officiel | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
Description | Add a download button for Github and gist |
Taille du Fichier | 50.94 KB |
Nombre d'Installations | 387 |
Version Actuelle | 1.5 |
Dernière Mise à Jour | 2015-11-20 |
Date de Publication | 2015-11-20 |
Évaluation | 3.67/5 Total 3 Évaluations |
Développeur | litefeel |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/lite3/github-file-download |
URL de la Page d'Aide | https://github.com/lite3/github-file-download |
Langues Prises en Charge | 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\/" } |