思源笔记DIY
隐藏VIP功能特性相关内容
隐藏VIP试用和收集箱
#toolbarVIP{
display:none;
}
[data-hotkeylangid="inbox"] {
display: none !important;
}
Savor主题下优化
统一关系图和全局关系图和Savor主题配色,
效果对比,原来 -> 修改后


.sy__globalGraph{
background-color: transparent;
}
.graph__panel{
box-shadow: none;
}
.sy__graph{
background-color: transparent;
}
.layout__tab--active .graph__svg{
background-color: transparent;
}
.fn__flex-1.sy__graph.layout__tab--active.fullscreen {
background-color: var(--b3-theme-surface) !important;
}
.fn__flex-1.sy__globalGraph.layout__tab--active.fullscreen {
background-color: var(--b3-theme-surface) !important;
}
免费的同步功能 better-sync-siyuan 优化
https://github.com/DD3Boh/better-sync-siyuan
ios使用这个插件时,可以和远程端(需要有公网ip)进行同步,但可能是因为ios的限制,每次打开思源时不会自动同步
解决方法, 在设置-外观-代码片段-设置-js 中添加
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'visible') {
setTimeout(() => {
document.querySelector('.better-sync-button')?.click();
}, 1000);
}
});
原理就是,每次打开思源时自动点击一个同步按钮