Created
November 9, 2023 17:02
-
-
Save shameemreza/7b83913c44cbd41e4df481e712bc215f to your computer and use it in GitHub Desktop.
Uncheck follow-up replies via email checbox on WordPress.org Forum
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Uncheck follow-up replies via email checbox | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description When you're on the WordPress.org forum, the system automatically selects the checkbox to receive follow-up replies via email. However, you don't have to subscribe to all threads as a support representative. This script will automatically uncheck this box. | |
// @author Shameem Reza | |
// @match https://wordpress.org/support/topic/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var checkbox = document.getElementById('bbp_topic_subscription'); | |
if (checkbox) { | |
checkbox.checked = false; | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment