testBycxl

用于在yu3.shop代理打开的Illution 网站下载对应的png资源

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         testBycxl
// @namespace    hello,cxl
// @version      0.01
// @description  用于在yu3.shop代理打开的Illution 网站下载对应的png资源
// @author       chenxinliang
// @include      *
// @grant        none
// @license      AGPL-3.0-or-later
// ==/UserScript==
 
(function() {
    'use strict';
    // Your code here...
    console.log("你好呀,欢迎参考我的第一个脚本!!")
//    alert("你好呀,欢迎参考我的第一个脚本!")
   // 获取包含所有元素的父容器
   const container = document.getElementsByTagName("body")

   // 添加点击事件监听器(事件委托)
   container.addEventListener("click", function(event) {
     // 使用事件对象的 target 属性获取点击的元素
     const clickedElement = event.target;

     // 打印点击的元素
     console.log("Clicked Element:", clickedElement);
   });
})();