todo line-through

todo line-through crm

От 12.03.2021. Виж последната версия.

// ==UserScript==
// @name         todo line-through
// @namespace    http://crm.red-promo.ru/
// @version      1.1
// @description  todo line-through crm
// @author       none
// @match        http://crm.red-promo.ru/*
// @grant        none
// @license MIT
// ==/UserScript==

(function () {
    "use strict";
    console.log("start");
    document.addEventListener("selectionchange", () => {
        document.getSelection().baseNode.parentElement.style.textDecoration = "line-through";
        document.getSelection().removeAllRanges();
    });
})();