Synology add download

This extensions allows remote adding of downloads to your Synology Nas Download station.

什么是Synology add download?

Synology add download是由olric86开发的Chrome扩展程序,该扩展的主要功能是“This extensions allows remote adding of downloads to your Synology Nas Download station.”。

扩展截图

screenshot

下载Synology add download扩展crx文件

下载Synology add download扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The Synology add download extension is a handy tool that allows you to add any link to your DSM Download Station download queue.

##########################

Premiumize.me Users

In addition to what stated previously, the extension adds an useful button inside your downloaded torrents list that can be used to quickly add the zip archive of the torrent to your DSM

##########################

Changelog:

v0.1.3
  Use sid authentication instead of session cookie
v0.1.4
  Update to reflect changes in premiumize.me website (torrent zip download)
v0.1.5
  Update to reflect changes in premiumize.me website (torrent zip download)
  Poll for finished torrent every 2 seconds instead of just 1.
v0.1.6
  Update to reflect changes in premiumize.me website (torrent zip download)
v0.1.7
  The 'Send' button shown in the premiumize.me downloader is now displayed inline.
v0.1.8
  Update to reflect changes in premiumize.me cloud api.
v0.1.9
  Update to reflect changes in premiumize.me style.                    

扩展基本信息

名称 Synology add download Synology add download
ID gaedlpnklpnpgjonldlmmmnmhhadicnk
官方URL https://chromewebstore.google.com/detail/synology-add-download/gaedlpnklpnpgjonldlmmmnmhhadicnk
简介 This extensions allows remote adding of downloads to your Synology Nas Download station.
文件大小 21.84 KB
安装次数 4,645
当前版本 0.1.9
更新时间 2018-08-17
上架时间 2018-08-17
评分 2.14/5 共7次评分
开发者 olric86
付费类型 free
扩展官网 https://github.com/Olric86/syno_download_ext
帮助页面URL https://github.com/Olric86/syno_download_ext/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Synology add download",
    "description": "This extensions allows remote adding of downloads to your Synology Nas Download station.",
    "version": "0.1.9",
    "browser_action": {
        "default_icon": "images\/favicon.ico",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "event_page.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.premiumize.me\/downloader*"
            ],
            "js": [
                "premiumize_downloader_content_script.js"
            ]
        }
    ]
}