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 extension for Synology Download Station"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Download Station (client for Synology NAS) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
    }
}