Neat DL+ is an enhanced, modern, and open-source Chrome Extension upgrade for Neat Download Manager (NDM).
While the original extension catches every download indiscriminately, Neat DL+ gives you complete control over what gets intercepted: exclude specific websites, ignore certain file extensions, set file size thresholds (with clickable KB, MB, GB units), and back up your configuration to JSON.
- One-Click Quick Exclude: Check "Exclude this site" directly in the popup or right-click anywhere on the page and select "Exclude this site from Neat DL+".
- Clean Domain Normalization: Automatically extracts root hostnames and strips tracking query parameters (UTM tags, tokens, sub-paths) so rules apply reliably across the entire site.
- Subdomain Coverage: Automatically protects subdomains when parent domains are excluded.
- Custom Extension Filters: Define file extensions to ignore (e.g.,
*.dat,*.tmp,*.iso,*.log). - Flexible Syntax: Accepts
dat,.dat, or*.datand normalizes them automatically. - Direct Browser Download: Matched file types bypass NDM interception and download natively in Chrome without interruption.
-
Minimum Size Filter: Ignore downloads smaller than
$X$ (e.g., icons, small preview clips, thumbnails). -
Maximum Size Filter: Ignore downloads larger than
$Y$ (let browser handle heavy files if preferred). -
Clickable Unit Selector: Easily switch between
KB,MB, andGBwith responsive segmented buttons. - Live Status Indicator: Real-time summary showing active threshold bounds (e.g., Catching files between 10 MB and 1 GB).
- Export Settings: Download a formatted
neat-dl-plus-config.jsoncontaining all your excluded sites, file formats, and size limits. - Import Settings: Restore your configuration with one click after reinstalling your browser or setting up a new computer.
- Automatic Deduplication & Validation: Sanitizes data upon import to prevent corrupt rules or duplicates.
- Minimalist Aesthetic: Compact popup with iOS-style toggle switches and responsive controls.
- Dark / Light Mode: Built-in dynamic theme detection respecting
prefers-color-scheme. - System Font Stack: Native look-and-feel across macOS (SF Pro) and Windows (Segoe UI).
- English Interface: Unified, clean English typography throughout popup, context menus, and options pages.
- Safe message channel teardown prevents
Unchecked runtime.lastError: The page keeping the extension port is moved into back/forward cacheconsole warnings in Chrome.
NeatDLPlus/
├── manifest.json # Manifest V3 configuration
├── bg.js # Background service worker (Exclusion engine & NDM WebSocket)
├── ct.js # Content script (Media detector & floating download panel)
├── popup.html # Action popup interface
├── popup.css # Popup styles (Dark/Light mode)
├── popup.js # Popup logic & quick toggle actions
├── options.html # Settings dashboard
├── options.css # Options dashboard styles
├── options.js # Settings state, live sync & JSON export/import
└── img/ # Extension icons (16px, 48px, 128px)
Prerequisite: Ensure Neat Download Manager desktop application is installed and running on your macOS or Windows system.
-
Get the Extension Source Code (Choose one of the methods):
-
Method A: Download from Releases (Recommended for non-developers)
- Go to the NeatDLPlus Releases page.
- Under the latest version, download the
Source code (zip)(or release package). - Unzip the downloaded file to a convenient, permanent directory on your computer.
-
Method B: Clone via Git (Recommended for developers)
git clone https://github.com/chimdien/NeatDLPlus.git
-
-
Open Your Chromium Browser's Extension Manager:
- Google Chrome: Go to
chrome://extensions/ - Microsoft Edge: Go to
edge://extensions/ - Brave: Go to
brave://extensions/ - Opera / Vivaldi: Go to their respective extensions settings page.
- Google Chrome: Go to
-
Enable Developer Mode:
- Turn on the Developer mode toggle in the top-right corner of the extensions page.
-
Load the Unpacked Extension:
- Click the Load unpacked button (top-left).
- In the file picker, select the extracted/cloned
NeatDLPlusfolder (the directory containingmanifest.json).
-
Verify & Pin:
- Neat DL+ will appear in your extensions list.
- Click the Puzzle Icon (Extensions) on your browser toolbar and pin Neat DL+ for quick access.
| Action | How-To |
|---|---|
| Toggle Download Catcher | Click the toolbar icon → flip the Download Catcher switch. Badge displays Off when disabled. |
| Exclude Current Page | Click the toolbar icon → check Exclude this site, or right-click any page and choose "Exclude this site from Neat DL+". |
| Exclude File Formats | Click Open Settings → Navigate to File Types → enter format (e.g. *.dat) → click Add. |
| Set Size Limits | Click Open Settings → Navigate to Size Limits → enable Min/Max toggles, enter values, and click KB / MB / GB. |
| Backup Configuration | Click Open Settings → Navigate to Backup & Restore → click Export JSON. |
| Restore Configuration | Click Open Settings → Navigate to Backup & Restore → click Import JSON → pick your backup file. |
flowchart TD
A[Browser intercepts HTTP Request via webRequest] --> B{Exclusion Checks}
B -->|Website in Exclusion List| C[Bypass NDM: Normal Browser Download]
B -->|File Extension Matched| C
B -->|File Size Outside Boundaries| C
B -->|Download Allowed| D[Handshake with NDM via WebSocket ws://127.0.0.1:10007]
D --> E[Neat Download Manager catches file]
webRequest.onHeadersReceived: Inspects response headers (Content-Type,Content-Disposition, andContent-Length).- Exclusion Check: Evaluates origin domain against
excludedWebsites, filename extension againstexcludedFileTypes, and file size againstsizeLimits. - Selective Interception:
- If excluded: Does not register the request ID; Chrome handles the download natively.
- If eligible: Sends download metadata (
URL,Cookies,Headers,Referer) through local WebSocket tows://127.0.0.1:10007/download.
- 100% Local: Neat DL+ does not collect telemetry, track browsing behavior, or send data to any external cloud server.
- Local Sync: Settings are saved locally using
chrome.storage.sync(automatically synced across your signed-in browser instances via Google Chrome sync). - Open Source: All background and content scripts are fully readable and inspectable.
This project is open-source and available under the MIT License. Neat Download Manager is a trademark of its respective owner.