Remote Deluge

Provides a quick overview of torrent status for Deluge.

Remote Delugeคืออะไร?

Remote Deluge เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yoda Enterprises และคุณลักษณะหลักของมันคือ "Provides a quick overview of torrent status for Deluge."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remote Deluge

ดาวน์โหลดไฟล์ส่วนขยาย Remote Deluge ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Add torrents to Deluge.
Manage existing torrents.
Filters/sorting/etc.

Please note that this is currently under development and may change dramatically as I work on it.

Please provide me with bug reports on my Github. Please also feel free to contribute patches.
https://github.com/YodaDaCoda/chrome-deluge-remote/issues

2017-04-10 v1.2.4
* Fix for Deluge v1.3.14

2016-06-22 v1.2.3
* Fix bug for first-time users.

2016-06-22 v1.2.2
* Fix a couple niggling bugs and added a donate button. Please donate if you find my work useful! :)

2016-01-27 v1.2.1
* Fixed broken settings from v1.2.0

2016-01-26 v1.2.0
* Fix context menu
* Fixed possible connections issue
* Various other code improvements

2015-06-04 v1.1.0
* Fix for connectivity problem introduced in last version

2015-06-03 v1.0.0
+ Add an option to settings for a base path for reverse-proxied connections.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Remote Deluge Remote Deluge
ID epcolmlaegimilnokaddncgmdafacohf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/remote-deluge/epcolmlaegimilnokaddncgmdafacohf
คำอธิบาย Provides a quick overview of torrent status for Deluge.
ขนาดไฟล์ 143 KB
จำนวนการติดตั้ง 3,467
เวอร์ชันปัจจุบัน 1.2.4
อัปเดตครั้งล่าสุด 2024-02-08
วันที่เผยแพร่ 2017-04-09
คะแนน 3.58/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา Yoda Enterprises
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/YodaDaCoda/chrome-deluge-remote
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remote Deluge",
    "description": "Provides a quick overview of torrent status for Deluge.",
    "version": "1.2.4",
    "icons": {
        "128": "images\/icons\/128.png",
        "64": "images\/icons\/64.png",
        "32": "images\/icons\/32.png",
        "16": "images\/icons\/16.png"
    },
    "web_accessible_resources": [
        "images\/icons\/16.png",
        "images\/icons\/16_green.png"
    ],
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/libs\/jquery-3.0.0.min.js",
            "js\/global_options.js",
            "js\/debug_log.js",
            "js\/deluge.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/icons\/deluge.png",
        "default_title": "__MSG_browser_title_disabled__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/libs\/jquery-3.0.0.min.js",
                "js\/global_options.js",
                "js\/debug_log.js",
                "js\/add_torrent.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2
}