readReceiptDeny

Automatically refuse to send read receipt in Google workspace

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name     readReceiptDeny
// @description Automatically refuse to send read receipt in Google workspace
// @version  1
// @grant    none
// @license GPL-3.0-or-later
// @match   https://mail.google.com/*
// @namespace https://greasyfork.org/users/885979
// ==/UserScript==

var MutationObserver = window.MutationObserver;
var myObserver = new MutationObserver(mutationHandler);
var obsConfig = {
    childList: true,
    subtree: true,
};
 
myObserver.observe(document, obsConfig);
 
function mutationHandler(mutationRecords) {
	for (const mutation of mutationRecords) {
        processNodes(mutation.addedNodes);
    }
}
 
function processNodes(nodes) {
    for (var i = 0; i < nodes.length; i++) {
        var node = nodes[i];
        if (node.tagName != "BUTTON") {
            return;
        }
        if (node.getAttribute("name") == "Later") {
            var text = node.parentNode.parentNode.innerText;
            if (text.match(/read receipts requested/i)) {
                node.click();
            }
        }
    }
}