搜索拓展跳转脚本

Handle clicks on elements with dynamic CSS selectors

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         搜索拓展跳转脚本
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Handle clicks on elements with dynamic CSS selectors
// @author       You
// @license 大萨达
// @match        https://www.baidu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 定义一个函数来处理点击事件
    function handleClick(e) {
        // 检查点击的元素是否匹配特定的CSS选择器模式
        if (e.target.matches('.arco-breadcrumb-item .text')) {
            let breadcrumbItem = e.target.closest('.arco-breadcrumb-item');
            let listItemContent = breadcrumbItem && breadcrumbItem.closest('.arco-list-item-content');
            let listItem = listItemContent && listItemContent.closest('.arco-list-item');

            // 检查listItem和breadcrumbItem是否符合:nth-child(n)选择器
            if (listItem && listItem.matches('.arco-list-item:nth-child(n)')) {
                if (breadcrumbItem && breadcrumbItem.matches('.arco-breadcrumb-item:nth-child(n)')) {
                    // 提取 href 属性
                    const href = e.target.closest('a') ? e.target.closest('a').getAttribute('href') : null;
                    if (href && href.startsWith("siyuan://blocks/")) {
                        // 提取 ID
                        const id = href.split('/').pop();
                        // 组合新的 URL
                        const newUrl = `http://127.0.0.1:6806/?id=${id}`;
                        // 在新标签页打开
                        window.open(newUrl, '_blank');
                        // 阻止默认行为
                        e.preventDefault();
                    }
                }
            }
        }
    }

    // 为整个文档添加点击事件监听器
    document.addEventListener('click', handleClick);
})();