UserScript crm

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

目前為 2021-03-12 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         UserScript crm
// @namespace    http://crm.red-promo.ru/
// @version      1.5
// @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;
})();