Github file download
Add a download button for Github and gist
Wat is Github file download?
Github file download is een Chrome-extensie ontwikkeld door litefeel, en de belangrijkste functie is "Add a download button for Github and gist".
Extensie Screenshots
Download het CRX-bestand van de extensie Github file download
Download Github file download-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Add a download button for Github and gist
Basisinformatie over de Extensie
Naam | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
Officiële URL | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
Beschrijving | Add a download button for Github and gist |
Bestandsgrootte | 50.94 KB |
Aantal Installaties | 387 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2015-11-20 |
Publicatiedatum | 2015-11-20 |
Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | litefeel |
Betalingswijze | free |
Extensiewebsite | https://github.com/lite3/github-file-download |
Help Pagina-URL | https://github.com/lite3/github-file-download |
Ondersteunde Talen | 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\/" } |