Download Station (client for Synology NAS)

Chrome extension for Synology Download Station

什麼是Download Station (client for Synology NAS)?

Download Station (client for Synology NAS)是由dvcol開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension for Synology Download Station”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載Download Station (client for Synology NAS)擴展crx文件

下載Download Station (client for Synology NAS)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Chrome extension which facilitate sending, monitoring and deleting tasks from a synology nas using download station.

It includes a dropdown interface with filtered tabs for displaying and managing download task, as well as a contentscript for allowing quick actions from magnet url links.

The popup support the following functionalities

- Tabbed download tasks display and filtering
- Task pause, play, seed, delete, destination edit
- Task creation through rich form (destination, url, ftp, zip password)
- Http, Https, 2FA login over local network
- Context menu creation (with custom destination)
- Quick action menu creation (with custom destination)
- Local download managment (play, pause, resum, retry, open, etc..)

The content script supports the following functionalities:

- One click download on magnet links
- Quick menu dropdown if more than one exist
- Rich task creation modal on quick action or context menu
- In-page notification for task creation

The service worker supports the following functionalities:

- Periodic task polling
- Custom badge number and text display for filtered tasks (by tabs, status, destination)
- Browser notifications on task completion/error (conditional on polling behavior and extensions permissions)

Support the developpment at : https://paypal.me/dvcol/5                    

擴展基本資訊

名稱 Download Station (client for Synology NAS) Download Station (client for Synology NAS)
ID ebbdkledlkjpgbbmmopgbnnjmklnkcef
官方網址 https://chromewebstore.google.com/detail/download-station-client-f/ebbdkledlkjpgbbmmopgbnnjmklnkcef
簡介 Chrome extension for Synology Download Station
檔案大小 1.3 MB
安裝次數 11,567
目前版本 3.10.3
更新時間 2023-12-07
上架時間 2022-02-24
評分 3.88/5 共 33 次評分
開發者 dvcol
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/dvcol/synology-download
說明頁面URL https://github.com/dvcol/synology-download/issues
隱私政策頁面URL https://github.com/dvcol/synology-download/blob/main/PRIVACY.md
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Chrome extension for Synology Download Station",
    "version": "3.10.3",
    "name": "Download Station (client for Synology NAS)",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png",
        "256": "assets\/icons\/icon-256.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "entry\/background.entry.js"
    },
    "action": {
        "default_title": "Synology Download Station",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/icon-16.png",
            "32": "assets\/icons\/icon-32.png",
            "64": "assets\/icons\/icon-64.png",
            "128": "assets\/icons\/icon-128.png",
            "256": "assets\/icons\/icon-256.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "entry\/contentScript.entry.js"
            ]
        }
    ],
    "permissions": [
        "scripting",
        "contextMenus",
        "notifications",
        "storage",
        "tabs",
        "downloads",
        "downloads.open"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}