最近の検索


最近の検索はありません

Benjamin Dietrich's Avatar

Benjamin Dietrich

参加日2024年8月09日

·

前回のアクティビティ2024年8月09日

フォロー中

0

フォロワー

0

合計アクティビティ

2

投票

0

サブスクリプション

1

アクティビティの概要

さんの最近のアクティビティ Benjamin Dietrich

Benjamin Dietrichさんがコメントを作成しました:

コミュニティのコメント Feedback - Ticketing system (Support)

You can use the following tampermonkey script:

 

// ==UserScript==
// @name         Remove Internal Note Comments
// @namespace    https://*.zendesk.com/
// @version      1.0
// @description  Removes any comments that are internal notes on Zendesk ticket print pages
// @author       Benjamin Dietrich
// @match        https://*.zendesk.com/tickets/*/print
// @icon         https://d1eipm3vz40hy0.cloudfront.net/images/logos/favicons/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Select all comment divs
    const comments = document.querySelectorAll('div.comment');

    comments.forEach(comment => {
        // Check if this comment contains a div.mast with a span.internal_note
        const mast = comment.querySelector('div.mast');
        if (mast) {
            const internalNote = mast.querySelector('span.internal_note');
            if (internalNote && internalNote.textContent.trim() === 'Internal note') {
                // If it does, remove the entire comment div
                comment.remove();
            }
        }
    });
})();

コメントを表示 · 編集日時:2024年8月09日 · Benjamin Dietrich

0

フォロワー

0

投票

0

コメント