Benvenuto in Thunderbird Add-ons.
Aggiungi nuove funzionalità e stili per rendere Thunderbird veramente tuo.
ChiudiRecensione di alta88 per SendWithoutSubject
Assegnate 5 su 5 stelle
This functionality may be created by installing userChromeJS from:
http://userchromejs.mozdev.org/
Add this code to the [profile]/chrome/userChrome.js file:
/* Compose window */
if (location == "chrome://messenger/content/messengercompose/messengercompose.xul") {
// Skip blank subject check in MsgComposeCommands.js.
eval("GenericSendMessage = " + GenericSendMessage.toString().replace(/subject == ""/, "subject == null"));
// Skip confirm cancel in MsgComposeCommands.js.
ComposeCanClose = function() { return true; };
}
Per creare una tua raccolta devi avere un account per Mozilla Add-ons.