您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make search result entries' image dimension information as link which points to the direct image resource.
- // ==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://gf.qytechs.cn/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);
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址