todo line-through

todo line-through crm

Устаревшая версия за 12.03.2021. Перейдите к последней версии.

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

(function () {
    "use strict";
    console.log("1");
    window.getSelection().baseNode.parentElement.style.textDecoration = "line-through";
    window.getSelection().removeAllRanges();
})();