Aria2c Integration
Download files with aria2
Что такое Aria2c Integration?
Aria2c Integration - это расширение Chrome, разработанное Stan, и его основная функция - "Download files with aria2".
Снимки экрана расширения
Скачать файл CRX расширения Aria2c Integration
Скачайте файлы расширений Aria2c Integration в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a new version of the extension of same name by Neato. This extension captures new download tasks and sends them to aria2 automatically, as per capturing rules you set (file size, file type, site whitelist, site blacklist) It also adds a context menu item. Right click any link and select "Download with aria2" to add the link to aria2 download queue. Click the extension icon to reveal a quick view of tasks. Click a progress bar area to pause/unpause a task or remove a completed/error task. Requirements: 1. Chrome >= 31. Auto download capture doesn't work before this version. 2. aria2c (>=1.15.2) with RPC enabled. RPC user and password/RPC secret can be set in options. Also rpc-listen-all and rpc-allow-origin-all needs to be switched on. Example: aria2c --enable-rpc --rpc-listen-all=true --rpc-allow-origin-all=true Recommend: Tick off "Ask where to save each file before downloading" in Chrome settings. Please report a bug if you run into any issue, preferably on Github. https://github.com/roooneey/chrome-aria2-integration Changelog: V1.7.1: Compliance with the new Chrome Web Store requirements. V1.7.0: Proper handling of cookies and handing them off to aria2c. v1.6.7: Enable adding tasks manually. v1.6.4: Skip the "blob:" scheme. v1.6.2: Bugfix. v1.6.1: RPC secret field is now masked; Paused tasks have their own color. Icons made by Loc (game-icons.net) under License CC BY 3.0.
Основная информация о расширении
Название | Aria2c Integration |
ID | cnkefpcjiolhnmhfpjbjpidgncnajlmf |
Официальный URL | https://chromewebstore.google.com/detail/aria2c-integration/cnkefpcjiolhnmhfpjbjpidgncnajlmf |
Описание | Download files with aria2 |
Размер файла | 112 KB |
Количество установок | 390 |
Текущая Версия | 1.7.1 |
Последнее Обновление | 2021-05-06 |
Дата публикации | 2019-02-20 |
Рейтинг | 4.20/5 Всего 15 оценок |
Разработчик | Stan |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/roooneey/chrome-aria2-integration |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Aria2c Integration", "version": "1.7.1", "manifest_version": 2, "minimum_chrome_version": "31", "description": "Download files with aria2", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "lib\/store.js", "main.js" ], "persistent": false }, "options_page": "settings.html", "permissions": [ "contextMenus", "tabs", "downloads", "notifications", "storage", "cookies", "*:\/\/*\/" ], "browser_action": { "default_icon": { "19": "icons\/icon19.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "inject.js" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |