Internet Download Manager – IDM Download

[vc_row][vc_column][vc_column_text]

Internet Download Manager (IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. The simple graphic user interface makes IDM user-friendly and easy to use.

[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_tta_tabs style=”modern” active_section=”1″][vc_tta_section title=”About” tab_id=”aboutf856-8f346ff4-3dd2″][vc_column_text]

Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download managers and accelerators, Internet Download Manager segments downloaded files dynamically during the download process and reuse available connections without additional connect and login stages to achieve the best acceleration performance.

Internet Download Manager supports proxy servers, FTP and HTTP protocols, firewalls, redirects, cookies, authorization, MP3 audio, and MPEG video content processing. IDM integrates seamlessly into Chrome, Microsoft Internet Explorer, Opera, Mozilla Firefox, Avant Browser, Maxthon Cloud Browser, and all other popular browsers to automatically handle your downloads. You can also drag and drop files, or use Internet Download Manager from the command line. It can dial your modem at the set time, download the files you want, then hang up or even shut down your computer when it’s done.

Internet Download Manager Download For Windows

Features of Internet Download Manager

  • All popular browsers and applications are supported! Internet Download Manager supports all versions of popular browsers and can be integrated into any 3rd party Internet applications.
  • Download with one click: When you click on a download link in a browser, IDM will take over the download and accelerate it. IDM supports HTTP, FTP, and HTTPS protocols.
  • Download Speed: This software can accelerate downloads speed by up to 5 times due to its intelligent dynamic file segmentation technology.
  • Download Resume: It will resume unfinished downloads from the place where they left off.
  • Simple installation wizard: The quick and easy installation program will make necessary settings for you, and check your connection at the end to ensure the trouble-free installation of this software.
  • Automatic Antivirus checking: Antivirus checking makes your downloads free from viruses and trojans.
  • Advanced Browser Integration: When enabled, the feature can be used to catch any download from any application. None of the download managers have this feature.
  • Built-in Scheduler: It can connect to the Internet at a set time, download the files you want, disconnect, or shut down your computer when it’s done.
  • IDM supports many types of proxy servers: For example, IDM works with Microsoft ISA, and FTP proxy servers.
  • IDM supports main authentication protocols: Basic, Negotiate, NTLM, and Kerberos. Thus IDM can access many Internet and proxy servers using login names and passwords.
  • Download All feature: IDM can add all downloads linked to the current page. It’s easy to download multiple files with this feature.
  • Customizable Interface: You may choose the order, and what buttons and columns appear on the main IDM window.
  • Download Categories: It can be used to organize downloads automatically using defined download categories.
  • Quick Update Feature: A quick update may check for new versions of IDM and update IDM once per week.
  • Download limits: Progressive downloading with quotas feature. The feature is useful for connections that use some kind of fair access policy (or FAP) like Direcway, Direct PC, Hughes, etc.
  • Drag and Drop: You may simply drag and drop links to IDM, and drag and drop complete files out of this software.
  • IDM is multilingual: IDM is translated to Arabic, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, French, German, Hungarian, Italian, Japanese, Lithuanian, Macedonian, Polish, Portuguese, Romanian, Russian, Slovenian, Spanish, Thai languages.

[/vc_column_text][/vc_tta_section][vc_tta_section title=”Screenshots” tab_id=”screenshotsf856-8f346ff4-3dd2″][vc_column_text]

Screenshots of Internet Download Manager

[/vc_column_text][vc_gallery interval=”3″ images=”61276″ img_size=”575×471″ title=”Enable Network Service”][/vc_tta_section][vc_tta_section title=”Alternatives” tab_id=”1613204936455-cd1a2326-6b56f856-8f346ff4-3dd2″][vc_column_text]

[/vc_column_text][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]

Internet Download Manager Overview

[/vc_column_text][vc_single_image image=”61275″][vc_column_text css=”.vc_custom_1629286503142{margin-top: 10px !important;}”]

Technische Spezifikation

Version6.39.2.1
Größe der Datei10.1 MB
SprachenMultiple
LizenzShareware
EntwicklerTonec FZE

[/vc_column_text][/vc_column][/vc_row]

// Constants for DOM elements const dropdownTriggers = document.querySelectorAll('.dz-menu-item.dropdown'); const dropdownContent = document.querySelector('.dz-dropdown-content'); const dropdownPanels = document.querySelectorAll('.dz-dropdown-panel'); const header = document.querySelector('.dz-header-wrap');// State to track the currently open menu item element let activeDropdownElement = null; let closeTimer = null; // Timer for delayed closing// Function to close all dropdowns function closeAllDropdowns() { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // Only proceed if the elements exist if (dropdownContent) { dropdownContent.classList.remove('open'); } dropdownPanels.forEach(panel => panel.classList.remove('active')); dropdownTriggers.forEach(item => item.classList.remove('active')); activeDropdownElement = null; }// Function to open a specific dropdown function openDropdown(item, targetPanel) { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // 1. Close all others closeAllDropdowns(); // 2. Open the new one item.classList.add('active'); targetPanel.classList.add('active'); if (dropdownContent) { dropdownContent.classList.add('open'); } activeDropdownElement = item; }// Event listener for each dropdown menu item dropdownTriggers.forEach(item => { item.addEventListener('click', function(e) { e.preventDefault(); const panelName = this.getAttribute('data-panel'); const targetPanel = document.querySelector(`.${panelName}`); if (!targetPanel) return;const isCurrentlyActive = this === activeDropdownElement;if (isCurrentlyActive) { // If the same dropdown is clicked, close it immediately. closeAllDropdowns(); } else { // Open the new dropdown openDropdown(this, targetPanel); } }); });/* --- MOUSE EVENTS FOR STABILITY FIX --- */ if (header) { // 1. When the mouse leaves the entire header area (menu + dropdown bar), start a timer to close it. header.addEventListener('mouseleave', () => { // Only initiate close if a dropdown is currently active if (activeDropdownElement) { // Set a delay (e.g., 300ms) to allow the user to move the mouse slightly closeTimer = setTimeout(closeAllDropdowns, 300); } });// 2. If the mouse re-enters the header area before the timer fires, cancel the close. header.addEventListener('mouseenter', () => { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } }); }// 3. Close when clicking anywhere outside the header (as a fallback) document.addEventListener('click', (e) => { // Check if header exists and if the click is outside the header AND a dropdown is open if (header && !header.contains(e.target) && activeDropdownElement) { closeAllDropdowns(); } });// Initial setup: ensure all are closed on load document.addEventListener('DOMContentLoaded', closeAllDropdowns); window.addEventListener('load', closeAllDropdowns);
Nach oben blättern