NAS Download Manager (for Synology)
Add and manage Download Station tasks on your Synology DiskStation.
什么是NAS Download Manager (for Synology)?
NAS Download Manager (for Synology)是由seansfkelley开发的Chrome扩展程序,该扩展的主要功能是“Add and manage Download Station tasks on your Synology DiskStation.”。
扩展截图
下载NAS Download Manager (for Synology)扩展crx文件
下载NAS Download Manager (for Synology)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
NAS Download Manager allows you to add and manage your download tasks on your Synology DiskStation NAS right from your browser. NAS Download Manager requires a Synology NAS with DSM version 4 or higher. Features: - Right-click and download many types of media and files (e.g. .torrent files). - Clear all completed tasks with one click. - Choose destination folder for new download tasks. - View, filter and sort all the current download tasks in the extension popup. - Add/pause/resume/remove download tasks in the extension popup. - System notifications for completed download tasks. - Open some types of links (e.g. magnet:) in the extension rather than a desktop application. - Add multiple downloads at the same time. Please note that NAS Download Manager is not an official Synology offering.
扩展基本信息
名称 | NAS Download Manager (for Synology) |
ID | iaijiochiiocodhamehbpmdlobhgghgi |
官方URL | https://chromewebstore.google.com/detail/nas-download-manager-for/iaijiochiiocodhamehbpmdlobhgghgi |
简介 | Add and manage Download Station tasks on your Synology DiskStation. |
文件大小 | 952 KB |
安装次数 | 48,077 |
当前版本 | 0.12.2 |
更新时间 | 2023-09-14 |
上架时间 | 2020-03-02 |
评分 | 3.05/5 共172次评分 |
开发者 | seansfkelley |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/seansfkelley/nas-download-manager |
帮助页面URL | https://github.com/seansfkelley/nas-download-manager/issues |
隐私政策页面URL | https://github.com/seansfkelley/synology-download-manager/blob/master/PRIVACY.md |
支持的语言 | de,en,fr,ru,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NAS Download Manager (for Synology)", "version": "0.12.2", "description": "__MSG_Add_and_manage_Download_Station_tasks_on_your_Synology_DiskStation__", "default_locale": "en", "background": { "scripts": [ "dist\/background\/index.js" ] }, "permissions": [ "contextMenus", "storage", "notifications", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "dist\/content\/index.js" ] } ], "browser_action": { "browser_style": true, "default_title": "NAS Download Manager", "default_popup": "html\/popup.html", "default_icon": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "64": "icons\/icon-64.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png" } }, "options_ui": { "page": "html\/settings.html" }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "64": "icons\/icon-64.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png" } } |