UserScript:Popup-Link-Jisho
選択したテキストをJishoへのリンクに書き換える
code:script.js
scrapbox.PopupMenu.addButton({
title: 'JiL',
onClick: text => {
if (regexp.test(text)){
return text.replace(regexp, "$2")
} else {
return [https://jisho.org/search/${encodeURI(text.replace(' ', '+'))} ${text}]
}
}
})
https://img.shields.io/badge/JavaScript-UserScript_Popup--Link--Jisho-F7DF1E.svg?logo=javascript&style=for-the-badge