This script prevents notion from adding a strikethrough and fading checked off items in a todo list.
< 脚本Notion.so Clean Todo Lists - no strikethrough or fading的反馈
It generally works, but it seems that the style changed.
To get it to work again, you have to exchange the function with the following:
function restyleCheckedTodos(elements){ elements.forEach((e) => { if(e.style.textDecoration == 'line-through rgb(127, 127, 127)' & e.style.color == 'rgba(255, 255, 255, 0.445)'){ e.style.textDecoration = 'none'; e.style.color = ''; } }); }
登录(不可用)以发表回复。
土豆服务器,请按需使用
镜像地址随时可能被墙,建议加群获取最新地址
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
It generally works, but it seems that the style changed.
To get it to work again, you have to exchange the function with the following: