Bing Image Direct Link Patch

Make search result entries' image dimension information as link which points to the direct image resource.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        Bing Image Direct Link Patch
// @namespace   BingImageDirectLinkPatch
// @version     1.2.4
// @license     AGPLv3
// @author      jcunews
// @description Make search result entries' image dimension information as link which points to the direct image resource.
// @website     https://greasyfork.org/en/users/85671-jcunews
// @include     https://www.bing.com/images/search*
// @grant       none
// ==/UserScript==

(() => {
  addEventListener("mouseenter", (ev, a, b, c, z) => {
    if (ev.target.matches(".imgpt:not(.linked_bidlp)") && (a = ev.target.querySelector(".img_info>span")) && (b = ev.target.querySelector(".iusc"))) {
      ev.target.classList.add("linked_bidlp");
      (c = document.createElement("A")).textContent = a.textContent;
      c.className = a.className;
      c.style.cssText = a.style.cssText;
      c.rel = "nofollow noopener noreferrer";
      try {
        if (!(c.href = JSON.parse(b.getAttribute("m")).murl)) throw 0;
      } catch(z) {
        c.href = 'javascript.void("Error getting image URL")';
      }
      a.parentNode.replaceChild(c, a);
    }
  }, true);
})();