mastodon-confirm-no-replying

prevent user post a replying toot without click *reply* button of the origin toot.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Advertisement:

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

Advertisement:

// ==UserScript==
// @name     mastodon-confirm-no-replying
// @namespace http://gholk.github.io
// @version  1
// @grant    none
// @license GPLv3
// @description prevent user post a replying toot without click *reply* button of the origin toot.
// @include https://g0v.social/*
// @exclude https://g0v.social/settings/*
// ==/UserScript==


window.addEventListener('keydown', e=>{
  const t = e.target;
  if (!(e.key == 'Enter' && e.ctrlKey)) return true
  if (t.nodeName == 'TEXTAREA' && t.matches('.autosuggest-textarea__textarea')) {
    const f = t.form;
    confirmNotReply(f, e)
  }
}, {
  capture: true,
  passive: false
})
window.addEventListener('click', e=>{
  const b = e.target;
  if (b.matches('.compose-form__publish-button-wrapper *')) {
    const f = b.closest('form');
    confirmNotReply(f, e)
  }
}, {
  capture: true,
  passive: false
})
function confirmNotReply(form, event) {
    const f = form
    const e = event
    if (f.querySelector('.reply-indicator')) return;
    if (confirm('not replying, toot this?')) return;
    e.preventDefault();
    e.stopImmediatePropagation()
}