/*
* @title [?]カスタム絵文字見せてください
* @description インスタンスのカスタム絵文字を雑に表示します。
* @include *
* @license MIT License
* @javascript_url
*/
void fetch('/api/v1/custom_emojis').then(r => r.json()).then((
j,
d = document,
t = (n, a) => Object.assign(d.createElement(n), a),
p = d.body.appendChild(t('div', { style: 'all: initial; background: white; color: black; padding: 1em; position: fixed; top: 0; left: 0; z-index: 2147483646;' }))
) => (
p.addEventListener('dblclick', e => (document.body.removeChild(e.target), e.stopPropagation()), false),
j.forEach(s => p.appendChild(t('img', { src: s.url, title: `:${s.shortcode}:`, width: 20, height: 20 })))
));