Greasy Fork

Greasy Fork is available in English.

PAPAZ Google Direct Image Links

Replaces Google Image search result links with direct image links

当前为 2024-05-19 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name          PAPAZ Google Direct Image Links
// @description   Replaces Google Image search result links with direct image links
// @version       1.4
// @author        DoctorEye
// @namespace     DoctorEye
// @license       MIT
// @match         *://www.google.*/search*
// @match         *://encrypted.google.*/search*
// @grant         none
// @run-at        document-end
// ==/UserScript==

(function() {
    'use strict';

    const query = "a[href*='/imgres?']";

    function updateLinks() {
        document.querySelectorAll(query).forEach(link => {
            const url = new URL(link.href);
            const imgUrl = url.searchParams.get('imgurl');
            if (imgUrl) {
                console.log('Found image URL:', imgUrl); // Debug log
                link.href = imgUrl;
                link.removeAttribute('jsaction');

                // Remove Google's event listeners
                link.addEventListener('click', function(event) {
                    event.stopImmediatePropagation();
                    event.preventDefault();
                    window.location.href = imgUrl;
                }, true);

                console.log('Updated link:', link.href); // Debug log
            }
        });
    }

    const observer = new MutationObserver(updateLinks);
    observer.observe(document.body, { childList: true, subtree: true });

    // Run on initial load
    document.addEventListener('DOMContentLoaded', updateLinks);
})();