搜索引擎:显示思源内容的浏览器拓展:zuoqiu-Yingyi/siyuan-extension: 思源笔记浏览器插件 | 思源笔记的浏览器扩展 (github.com)
跳转油猴脚本:解决拓展授权验证无效的问题,并且它只能显示手机端界面。
// ==UserScript== // @name 搜索拓展跳转脚本 // @namespace http://tampermonkey.net/ // @version 0.1 // @description Handle clicks on elements with dynamic CSS selectors // @author You // @match *://*/* // @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); })();
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于