MLDonkey

Interact with mldonkey and add download tasks automatically when you click elinks.

MLDonkey란 무엇입니까?

MLDonkey은(는) http://ogarcia.moire.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Interact with mldonkey and add download tasks automatically when you click elinks."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

MLDonkey 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension permits send elinks directly to your remote MLDonkey server.

>> What is new in 0.7.2?

· Simply remove unused permission.

>> What is new in 0.7.1?

· Fixed to work with latest versions of browser.
· Prevent ed2k links continue being opened with xdg-open.

>> What is new in 0.7?

· New Chrome Rich Notifications.
· Now, if you've previously downloaded the elink, the extension give you a warning message.

>> Configure

· Enable the web interface in your P2P client.
· Install the extension.
· Open the extension's options (Menu -> Tools -> Extensions -> MLDonkey -> Options), add service info (URL and Port), optionally set User and Password and save.

>> Use

· Search any P2P page.
· A small icon appears in omnibox indicating elinks found.
· Click on link. A popup must indicate that the download are send to MLDonkey.
· See MLDonkey status.                    

확장 프로그램 기본 정보

이름 MLDonkey MLDonkey
ID dgkcbbgplkpanobfhmpnibgopcdepghj
공식 URL https://chrome.google.com/webstore/detail/mldonkey/dgkcbbgplkpanobfhmpnibgopcdepghj
설명 Interact with mldonkey and add download tasks automatically when you click elinks.
파일 크기 89.77 KB
설치 횟수 464
현재 버전 0.7.2
최근 업데이트 2021-07-08
출시 날짜 2018-11-26
평점 4.11/5 총 9 개의 평점
개발자 http://ogarcia.moire.org
이메일 [email protected]
확장 프로그램 웹 사이트 https://github.com/ogarcia/mldonkey
도움말 페이지 URL https://github.com/ogarcia/mldonkey/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon24.png",
        "default_title": "Downloadable resources found!"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "main.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "runat": "document_idle"
        }
    ],
    "description": "Interact with mldonkey and add download tasks automatically when you click elinks.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "24": "icon24.png",
        "256": "icon256.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png"
    },
    "manifest_version": 2,
    "name": "MLDonkey",
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "storage"
    ],
    "version": "0.7.2",
    "web_accessible_resources": [
        "icon48.png"
    ]
}