Github file download
Add a download button for Github and gist
Apa itu Github file download?
Github file download adalah ekstensi Chrome yang dikembangkan oleh litefeel, dan fitur utamanya adalah "Add a download button for Github and gist".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Github file download
Unduh file ekstensi Github file download dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Add a download button for Github and gist
Informasi Dasar Ekstensi
Nama | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
URL Resmi | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
Deskripsi | Add a download button for Github and gist |
Ukuran File | 50.94 KB |
Jumlah Instalasi | 387 |
Versi Saat Ini | 1.5 |
Terakhir Diperbarui | 2015-11-20 |
Tanggal Publikasi | 2015-11-20 |
Penilaian | 3.67/5 Total 3 Penilaian |
Pengembang | litefeel |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/lite3/github-file-download |
URL Halaman Bantuan | https://github.com/lite3/github-file-download |
Bahasa yang Didukung | 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\/" } |