Download with JDownloader

Integrates the browser with JDownloader either by interrupting the built-in download manager or from right-click context menu

Τι είναι το Download with JDownloader;

Το Download with JDownloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον InBasic, και η κύρια λειτουργία του είναι "Integrates the browser with JDownloader either by interrupting the built-in download manager or from right-click context menu".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Download with JDownloader

Λήψη αρχείων επέκτασης Download with JDownloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension enables connectivity between your browser and JDownloader, a Java-based download manager.

The extension offers two modes of operation:
1. It allows you to send downloading jobs directly from the right-click context menu.
2. It can interrupt the built-in download manager and redirect the requests to JDownloader.

By default, the interruption mode is inactive. Click the action button (toolbar button) once to activate it. To turn off the interruption mode, click the action button again?the interruption mode can help you when a website does not provide direct download links.

Native Integration:
For this extension to communicate with JDownloader and execute native commands, a native client is required. The instructions for installing this NodeJS native client are provided when you use the extension for the first time. Additionally, please note that this extension only connects your browser to the JDownloader, so you must have the JDownloader application installed on your operating system for the extension to work. 

You can review the code of the native client at:
https://github.com/belaviyo/native-client/releases. 
A brief video tutorial on installing and using the native client is available at: 
https://www.youtube.com/watch?v=vSnZp2wflTc

It is important to mention that this extension uses JDownloader's local server to send downloading jobs to the external downloader. The extension can work correctly without installing the native client as long as JDownloader is running in the background. The native client is only necessary to start the downloader when the server is not present.

Logs:
Version 0.1.6
1. Fixed issue with tab names not being sent to JDownloader.
Version 0.1.7
1. Added functionality to download all links with JDownloader.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Download with JDownloader Download with JDownloader
ID jfpmbokkdeapjommajdfmmheiiakdlgo
Επίσημο URL https://chromewebstore.google.com/detail/download-with-jdownloader/jfpmbokkdeapjommajdfmmheiiakdlgo
Περιγραφή Integrates the browser with JDownloader either by interrupting the built-in download manager or from right-click context menu
Μέγεθος Αρχείου 511 KB
Αριθμός Εγκαταστάσεων 71,714
Τρέχουσα Έκδοση 0.3.2
Τελευταία Ενημέρωση 2023-07-09
Ημερομηνία Δημοσίευσης 2020-06-29
Αξιολόγηση 4.00/5 Συνολικά 100 Αξιολογήσεις
Προγραμματιστής InBasic
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/download-with.html?from=jdownloader
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/download-with.html?from=jdownloader
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/inb.cor.txt
Υποστηριζόμενες Γλώσσες de,en,fr,nl,da,et,hu,fi,cs,el,bg,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Download with JDownloader",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.3.2",
    "homepage_url": "https:\/\/webextension.org\/listing\/download-with.html?from=jdownloader",
    "permissions": [
        "storage",
        "nativeMessaging",
        "notifications",
        "downloads",
        "contextMenus",
        "activeTab",
        "scripting"
    ],
    "optional_permissions": [
        "cookies"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "action": [],
    "options_ui": {
        "page": "data\/options\/index.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "data\/grab\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": []
    }
}