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」です。
拡張機能のスクリーンショット
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) |
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 |
Eメール | [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": [ " |