圖片縮放腳本

點擊圖片進行縮放和還原

// ==UserScript==
// @name         圖片縮放腳本
// @namespace    http://your-namespace.com
// @version      1.1
// @description  點擊圖片進行縮放和還原
// @author       Your Name
// @match        https://www.wnacg.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    var isZoomed = false; // 記錄是否已經縮小

    // 監聽滑鼠左鍵點擊事件
    document.addEventListener('click', function(event) {
        // 檢查是否點擊的是圖片
        if (event.target.tagName === 'IMG') {
            if (!isZoomed) {
                // 縮小整個頁面的所有圖片到50%
                var images = document.querySelectorAll('img');
                images.forEach(function(img) {
                    img.style.width = '50%';
                    img.style.height = 'auto';
                });
                isZoomed = true; // 設置為已縮小
            } else {
                // 還原所有圖片到原始大小
                var images = document.querySelectorAll('img');
                images.forEach(function(img) {
                    img.style.width = '';
                    img.style.height = '';
                });
                isZoomed = false; // 設置為未縮小
            }
        }
    });
})();