Github files download
Extension to download Githup single files without downloading the whole repo
Что такое Github files download?
Github files download - это расширение Chrome, разработанное Unknown, и его основная функция - "Extension to download Githup single files without downloading the whole repo".
Снимки экрана расширения
Скачать файл CRX расширения Github files download
Скачайте файлы расширений Github files download в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extension to download Github single files without downloading the whole repository , by right clicking the Github file link you will see an option to download the file.
Основная информация о расширении
Название | Github files download |
ID | lhfgdmnajofjhhokaobpkkgfjogknfbo |
Официальный URL | https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo |
Описание | Extension to download Githup single files without downloading the whole repo |
Размер файла | 828 KB |
Количество установок | 47 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2020-03-25 |
Дата публикации | 2020-03-25 |
Разработчик | Unknown |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.1", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "icons\/icon-16.png", "128": "icons\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "tabs", "storage", "http:\/\/github.com\/*", "https:\/\/github.com\/*", "contextMenus", "downloads" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "scripts\/contentscript.js" ], "css": [], "run_at": "document_end", "all_frames": false } ], "web_accessible_resources": [], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |