todo line-through

todo line-through crm

Från och med 2021-03-12. Se den senaste versionen.

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