英語版と台湾版をグレーにするスクリプト
meganii.iconトグルボタンを付けた。動くはず
code:script.js
scrapbox.PageMenu.addMenu({
title: 'NewButton',
image: 'https://i.gyazo.com/7057219f5b20ca8afd122945b72453d3.png',
onClick: () => {
let lines = ...document.querySelectorAll('.text');
...lines.filter(t => t.style.getPropertyValue("color") === "rgb(238, 238, 238)").length > 0 ?
lines.filter(x => x.innerText.startsWith("🇹🇼") || x.innerText.startsWith("🇺🇸")).map(t => t.style = "") :
lines.filter(x => x.innerText.startsWith("🇹🇼") || x.innerText.startsWith("🇺🇸")).map(t => t.style = "color: rgb(238, 238, 238)");
},
});
https://gyazo.com/c1f837f24258fc47add548a5efd87e1c
動きましたcFQ2f7LRuLYP.icon
Nice! akinorioyama.icon