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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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'"
    }
}