Bing Image Direct Link Patch

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

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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://greatest.deepsurf.us/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);
})();