Notion.so Clean Todo Lists - no strikethrough or fading

This script prevents notion from adding a strikethrough and fading checked off items in a todo list.

< Feedback on Notion.so Clean Todo Lists - no strikethrough or fading

Review: ठीक - स्क्रिप्ट चालते, पण त्यात बग आहेत

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 = '';
    }
  });
}

उत्तर पोस्ट करा

उत्तर पोस्ट करण्यासाठी साइन इन करा.

长期地址
遇到问题?请前往 GitHub 提 Issues。