您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes quoted text from Spike messages in unsupported languages and default junk signatures (style "Sent from my iThingy").
// ==UserScript== // @name Spike quoted mail fix // @namespace http://tampermonkey.net/ // @version 2024-02-11 // @description Removes quoted text from Spike messages in unsupported languages and default junk signatures (style "Sent from my iThingy"). // @author PiPauwels // @match https://spikenow.com/web/* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js // @require https://update.greasyfork.org/scripts/383527/701631/Wait_for_key_elements.js // @icon https://www.google.com/s2/favicons?sz=64&domain=spikenow.com // @grant GM.getValue // ==/UserScript== const QUOTED_TEXT_REGEX_DUT = /\n?\s?Op\s(maandag|dinsdag|woensdag|donderdag|vrijdag|zaterdag|zondag|ma|di|wo|do|vr|za|zo)?\s?\d+\s.*(schreef|heeft).*(<|lt;)+.*@.*(>|gt;)+.*(geschreven)?(.*|\n)*/g; const DEFAULT_SIG_1 = /Enviado (de mi|de|desde) ((<|<)a.*(>|>)+)?.*(.*|\n)*/g; const DEFAULT_SIG_2 = /Verstuurd vanaf mijn iPhone(.*|\n)*/g; const ORIGINAL_MSG = /-------- Oorspronkelijk bericht --------(.*|\n)*/g; const TRAILING_NEWLINES = /(<br>|<br\/>|\s)+$/g; const TRAILING_EMPTY_DIVS = /(<div dir="auto"><br><\/div>|\n)*(<div><br><\/div>|<div id="ms-outlook-mobile-signature" dir="auto"><\/div>)/g; waitForKeyElements (".thread", addThreadListener, false); function addThreadListener (jNode) { jNode.click(function(){ clickThread(); }); } function clickThread() { waitForKeyElements ("#__hop_embed", stripQuotedText, true, ".messageframe"); waitForKeyElements (".bubble > .body > .itemMessage", onMessagesRendered, false); } function onMessagesRendered(jNode) { jNode.click(function(){ clickMessage(); }); stripQuotedText(jNode); } function clickMessage() { waitForKeyElements ("#__hop_embed", stripQuotedText, false, ".messageframe"); } function stripQuotedText (jNode) { jNode.html( jNode.html().replace(QUOTED_TEXT_REGEX_DUT, "") .replaceAll(DEFAULT_SIG_1,"") .replaceAll(DEFAULT_SIG_2,"") .replaceAll(ORIGINAL_MSG,"") .replaceAll(TRAILING_NEWLINES,"") .replaceAll(TRAILING_EMPTY_DIVS,"")); }