Greasy Fork is available in English.

1DM+ Native Network Interceptor (Monkeypatch)

Aggressively intercepts programmatic navigation and clicks to route to 1DM+.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

Advertisement:

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

Advertisement:

作者
insta/@WaterDustLab
日安装量
4
总安装量
6
评分
0 0 0
版本
2.0
创建于
2026-06-19
更新于
2026-06-19
大小
2.9 KB
许可证
暂无
适用于
所有网站

aggressive monkeypatch script. By executing at document-start, we are overriding native browser functions before the website's own JavaScript has a chance to load.
​This approach attempts to mimic a native extension by hunting for programmatic triggers—specifically targeting the hidden API calls and forced clicks that modern platforms like Unsplash use.


Architectural Limitations to Expect
​While this gets you incredibly close to the native feel of Kiwi Browser, because we are operating inside the V8 JavaScript sandbox instead of the core Chromium engine, you need to be aware of a few hard boundaries:
​The Blob Storage Problem: If a website uses a raw fetch() request to download a file entirely into browser memory and then generates a blob:https://... URL, this script will ignore it. Android Intents cannot access the isolated memory space of your browser. 1DM+ simply cannot download a Blob URL; it requires a public network address.
​Locked Location Object: For severe security reasons, modern browsers do not allow developers to monkeypatch the window.location object. If a website triggers a download by directly assigning location.href = '[https://unsplash.com/download](https://unsplash.com/download)', we cannot intercept it dynamically. Fortunately, most modern frameworks use the .click() method we patched above.
​False Positives: Because we are looking for the word "download" in URLs, navigating to a standard webpage like [example.com/downloads/dashboard](https://example.com/downloads/dashboard) might accidentally trigger 1DM+.
​Install this into Violentmonkey, ensure it is set to run at document-start, and you will have forced Edge to be as aggressive as functionally possible with external download manager integration.