infoboxにアイコンが欲しい
わかるwogikaze.icon
ので適当に実装&実行
code:js
// img要素のスタイル
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = `
th img {
max-width: 100px;
}
tbody th {
display: flex;
flex-direction: column;
}`;
document.getElementsByTagName('head')0.appendChild(style); // /iconを持ってきている
Array.from(document.querySelectorAll(".literal-database tr")).slice(1).forEach(function(row) {
var img = document.createElement("img");
var targetTh = row.querySelector("th");
img.src = /api/pages/${scrapbox.Project.name}/${targetTh.innerText.replace(/\//g,"%2F")}/icon;
targetTh.appendChild(img);
});
https://gyazo.com/818cad45258be2c10062e42cdc678b9f
良いseibe.iconcFQ2f7LRuLYP.iconcak.icon