DuckDuckgGo Image Direct Link Patch

Make DuckDuckgGo Image search result entry's image size information as link to the direct image resource.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        DuckDuckgGo Image Direct Link Patch
// @namespace   https://greasyfork.org/en/users/85671-jcunews
// @version     1.0.3
// @license     AGPL v3
// @author      jcunews
// @description Make DuckDuckgGo Image search result entry's image size information as link to the direct image resource.
// @match       https://duckduckgo.com/*
// @grant       none
// @run-at      document-start
// ==/UserScript==

((dt, xo, ft, mo, ht) => {
  function processEntries() {
    if (!dt) {
      clearTimeout(ht);
      ht = setTimeout(processEntries, 500);
      return;
    }
    document.querySelectorAll(':is(.tile--img>.tile--img__dimensions,div[data-testid="zci-images"] figure>div>img+p):not(.linked_didlp)').forEach((e, a, u) => {
      e.classList.add("linked_didlp");
      (a = document.createElement("A")).textContent = e.textContent;
      a.style.cssText = "color:inherit";
      a.rel = "nofollow noopener noreferrer";
      u = e.previousElementSibling?.href ? e.previousElementSibling.href : e.closest('figure').querySelector('a').href;
      if (!dt.some((d, i) => {
        if (d.url === u) {
          a.href = d.image;
          dt.splice(i, 1);
          return true
        }
      })) a.href = 'javascript:void("Image URL is not found")';
      if (e.previousElementSibling?.href) {
        e.replaceChild(a, e.firstChild)
      } else {
        e.innerHTML = "";
        e.append(a)
      }
    });
  }

  xo = XMLHttpRequest.prototype.open;
  XMLHttpRequest.prototype.open = function(mtd, url) {
    if (/^\/?i\.js\?.*\bo=json/.test(url)) {
      this.addEventListener("load", (a, l, z) => {
        try {
          if (!(l = JSON.parse(this.responseText).results)) throw 0;
          Array.prototype.push.apply(dt, l);
        } catch(z) {}
        if (!mo) {
          mo = true;
          (new MutationObserver(recs => {
            clearTimeout(ht);
            ht = setTimeout(processEntries, 500);
          })).observe(document.body, {childList: true, subtree: true});
          processEntries();
        }
      })
    }
    return xo.apply(this, arguments);
  };
  ft = self.fetch;
  self.fetch = async function(url) {
    var r = await ft.apply(this, arguments);
    if (/^\/?i\.js\?.*\bo=json/.test(url)) {
      var rj = r.json;
      r.json = async function() {
        var r = await rj.apply(this, arguments);
        if (l = r.results) Array.prototype.push.apply(dt, l);
        if (!mo) {
          mo = true;
          (new MutationObserver(recs => {
            clearTimeout(ht);
            ht = setTimeout(processEntries, 500);
          })).observe(document.body, {childList: true, subtree: true});
          processEntries();
        }
        return r
      }
    }
    return r
  };

  dt = [];
})();