For those who still need to use this today, you will need to inject a script manually from the browser console that emulates the old extension as it no longer works today. The app does not build either as the Nuxt compiler segfaults.
let script = document.createElement('script')
script.type = 'text/javascript'
script.src = 'https://cdn.jsdelivr.net/npm/steem/dist/steem.min.js'
document.head.appendChild(script)
window.steem_keychain = {
requestPost: (author, title, body, pp, pa, json, permlink, _, cb) => {
steem.broadcast.comment('POSTING WIF', pa, pp, author, permlink, title, body, JSON.stringify(json), function(err, result) {
cb({
success: !err,
error: err,
result: result
})
})
}
}
I'm kinda surprised anyone still using it :D