Download Station (client for Synology NAS)

Chrome extension for Synology Download Station

O que é Download Station (client for Synology NAS)?

Download Station (client for Synology NAS) é uma extensão do Chrome desenvolvida por dvcol, e sua principal característica é "Chrome extension for Synology Download Station".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Download Station (client for Synology NAS)

Baixe arquivos de extensão Download Station (client for Synology NAS) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Download Station (client for Synology NAS) Download Station (client for Synology NAS)
ID ebbdkledlkjpgbbmmopgbnnjmklnkcef
URL Oficial https://chromewebstore.google.com/detail/download-station-client-f/ebbdkledlkjpgbbmmopgbnnjmklnkcef
Descrição Chrome extension for Synology Download Station
Tamanho do Arquivo 1.3 MB
Contagem de Instalações 11,567
Versão Atual 3.10.3
Última Atualização 2023-12-07
Data de Publicação 2022-02-24
Classificação 3.88/5 Total de 33 Avaliações
Desenvolvedor dvcol
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/dvcol/synology-download
URL da Página de Ajuda https://github.com/dvcol/synology-download/issues
URL da Página de Política de Privacidade https://github.com/dvcol/synology-download/blob/main/PRIVACY.md
Idiomas Suportados 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'"
    }
}