Hi. My add-on doesn’t work legacy mode at TB 68, so I try to remake it by MailExtensions.
And now I wonder how to make add-on which work on message compose window.
I assume manifest.json like below, but thunderbird said “This is not compatible with TB 68”. (Maybe “content_scripts” is not supported by Thunderbird.)
"content_scripts": [
{
"matches": ["chrome://messenger/content/messengercompose/*"],
"js": ["scripts/sample.js"]
}
],