Synology add download
This extensions allows remote adding of downloads to your Synology Nas Download station.
Synology add download란 무엇입니까?
Synology add download은(는) olric86에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extensions allows remote adding of downloads to your Synology Nas Download station."입니다.
확장 프로그램 스크린샷
Synology add download 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Synology add download extension is a handy tool that allows you to add any link to your DSM Download Station download queue. ########################## Premiumize.me Users In addition to what stated previously, the extension adds an useful button inside your downloaded torrents list that can be used to quickly add the zip archive of the torrent to your DSM ########################## Changelog: v0.1.3 Use sid authentication instead of session cookie v0.1.4 Update to reflect changes in premiumize.me website (torrent zip download) v0.1.5 Update to reflect changes in premiumize.me website (torrent zip download) Poll for finished torrent every 2 seconds instead of just 1. v0.1.6 Update to reflect changes in premiumize.me website (torrent zip download) v0.1.7 The 'Send' button shown in the premiumize.me downloader is now displayed inline. v0.1.8 Update to reflect changes in premiumize.me cloud api. v0.1.9 Update to reflect changes in premiumize.me style.
확장 프로그램 기본 정보
이름 | Synology add download |
ID | gaedlpnklpnpgjonldlmmmnmhhadicnk |
공식 URL | https://chromewebstore.google.com/detail/synology-add-download/gaedlpnklpnpgjonldlmmmnmhhadicnk |
설명 | This extensions allows remote adding of downloads to your Synology Nas Download station. |
파일 크기 | 21.84 KB |
설치 횟수 | 4,645 |
현재 버전 | 0.1.9 |
최근 업데이트 | 2018-08-17 |
출시 날짜 | 2018-08-17 |
평점 | 2.14/5 총 7 개의 평점 |
개발자 | olric86 |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Olric86/syno_download_ext |
도움말 페이지 URL | https://github.com/Olric86/syno_download_ext/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Synology add download", "description": "This extensions allows remote adding of downloads to your Synology Nas Download station.", "version": "0.1.9", "browser_action": { "default_icon": "images\/favicon.ico", "default_popup": "popup.html" }, "background": { "scripts": [ "event_page.js" ], "persistent": false }, "permissions": [ "activeTab", "contextMenus", "http:\/\/*\/", "https:\/\/*\/" ], "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.premiumize.me\/downloader*" ], "js": [ "premiumize_downloader_content_script.js" ] } ] } |