Github file download
Add a download button for Github and gist
ما هو Github file download؟
Github file download هو إضافة Chrome تم تطويرها بواسطة litefeel، والميزة الرئيسية لها هي "Add a download button for Github and gist".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Github file download
قم بتنزيل ملفات الامتداد Github file download بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Add a download button for Github and gist
معلومات أساسية عن التمديد
الاسم | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
الوصف | Add a download button for Github and gist |
حجم الملف | 50.94 KB |
عدد التثبيتات | 387 |
النسخة الحالية | 1.5 |
آخر تحديث | 2015-11-20 |
تاريخ النشر | 2015-11-20 |
تقييم | 3.67/5 مجموع تقييمات 3 |
المطور | litefeel |
نوع الدفع | free |
موقع الإضافة | https://github.com/lite3/github-file-download |
عنوان صفحة المساعدة | https://github.com/lite3/github-file-download |
اللغات المدعومة | 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\/" } |