delugesiphon
Send torrent links to your Deluge server.
delugesiphon란 무엇입니까?
delugesiphon은(는) https://sbussetti.github.io/deluge-siphon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Send torrent links to your Deluge server."입니다.
확장 프로그램 스크린샷
delugesiphon 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
To report an issue, please visit my GitHub Issues page: https://github.com/sbussetti/deluge-siphon . The reviews section of the webstore is not a good place to leave feedback about specific issues if you would like them to be resolved. This extension is an incredibly simple Deluge adder that allows you to send torrent links to your Deluge server with just a click from Google's most excellent Chrome browser. Works with link and cookie based tracker authentication and supports magnet links, which should cover every kind of tracker and torrent out there. Please keep in mind, Deluge did not support magnet links until 1.3.3 so if you want to use this extension for adding magnet links you MUST upgrade your Deluge server. On Github: https://github.com/sbussetti/deluge-siphon
확장 프로그램 기본 정보
이름 | delugesiphon |
ID | gabdloknkpdefdpkkibplcfnkngbidim |
공식 URL | https://chromewebstore.google.com/detail/delugesiphon/gabdloknkpdefdpkkibplcfnkngbidim |
설명 | Send torrent links to your Deluge server. |
파일 크기 | 560 KB |
설치 횟수 | 10,000 |
현재 버전 | 0.72.6 |
최근 업데이트 | 2018-12-25 |
출시 날짜 | 2018-12-25 |
평점 | 4.00/5 총 102 개의 평점 |
개발자 | https://sbussetti.github.io/deluge-siphon |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sbussetti/deluge-siphon |
도움말 페이지 URL | https://github.com/sbussetti/deluge-siphon/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "delugesiphon", "short_name": "delugesiphon", "version": "0.72.6", "default_locale": "en", "description": "Send torrent links to your Deluge server.", "homepage_url": "http:\/\/sbussetti.github.io\/deluge-siphon\/", "author": "sbussetti", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "defaultTitle": "delugesiphon", "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "options_page": "options.html", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*", "cookies", "contextMenus", "notifications" ], "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "content.min.js" ], "css": [ "content.min.css" ] } ], "background": { "scripts": [ "background.min.js" ] }, "web_accessible_resources": [ "images\/*.png", "images\/*.gif", "lib\/images\/*.png" ] } |