UserScript crm

для зачеркивания выполненых задач

12.03.2021 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         UserScript crm
// @namespace    http://crm.red-promo.ru/
// @version      1.6
// @description  для зачеркивания выполненых задач
// @author       none
// @match        http://crm.red-promo.ru/*
// @grant        none
// ==/UserScript==

(function () {
    "use strict";

    console.log("start");

    const getItems = () => JSON.parse(window.localStorage.getItem("task")) ?? [];

    function lineThrough() {
        if (document.getSelection().baseNode && !document.getSelection().baseOffset) {
            const elem = document.getSelection().baseNode.parentElement;
            if (elem && elem.closest("tr").textContent.includes("Контент") && elem.closest("td")) {
                elem.classList.add("line");
                document.getSelection().removeAllRanges();
                updateStorage();
            }
        }
    }

    function addslashes(str) {
        return (str + "").replace(/[\\"']/g, "\\$&").replace(/\u0000/g, "\\0");
    }

    function updateStorage() {
        let res = getItems();
        document.querySelectorAll(".line").forEach((item) => {
            if (!res.includes(item.textContent)) {
                res.push(item.textContent);
            }
        });
        window.localStorage.setItem("task", JSON.stringify(res));
    }

    window.clearStorageTask = function () {
        window.localStorage.clear();
        window.location.reload();
    };

    function start() {
        getItems().forEach((item) => $('p:contains("' + addslashes(item) + '")').addClass("line"));
        $(document.head).append("<style>.line{text-decoration:line-through}</style>");
        $(".nav.navbar-nav").first().append('<li><a href="#" onclick="clearStorageTask()">Очистить</a></li>');
        document.addEventListener("selectionchange", lineThrough);
    }

    window.onload = start;
    console.log("end");
})();