Github file download
Add a download button for Github and gist
Hvad er Github file download?
Github file download er en Chrome-udvidelse udviklet af litefeel, og dens hovedfunktion er "Add a download button for Github and gist".
Udvidelsesskærmbilleder
Download Github file download-udvidelses-CRX-fil
Download Github file download-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Add a download button for Github and gist
Grundlæggende oplysninger om udvidelsen
Navn | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
Officiel URL | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
Beskrivelse | Add a download button for Github and gist |
Filstørrelse | 50.94 KB |
Antal Installationer | 387 |
Nuværende Version | 1.5 |
Senest Opdateret | 2015-11-20 |
Udgivelsesdato | 2015-11-20 |
Bedømmelse | 3.67/5 Samlet 3 Bedømmelser |
Udvikler | litefeel |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/lite3/github-file-download |
Hjælpeside-URL | https://github.com/lite3/github-file-download |
Understøttede Sprog | 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\/" } |