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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
URL страницы помощи | 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\/" } |