ページの背景をリーガルパッド風にするUserScript
onな状態。
背景色が黄色になり
各行に下線が入る
script.jsscrapbox.PageMenu.addItem({
title: 'legalpad',
onClick: (e) => {
var bg = '#fff650' // ここにお好きな背景色を入れてね(テーマの背景が黒なら black で)
var style = document.getElementById('__legal__')
if (style) { style.remove(); e.currentTarget.innerText = 'legalpad mode'; return }
else e.currentTarget.innerText = String.fromCharCode(0x02713) + ' legalpad mode'
var css = `.page { background-color:${bg} !important; background-image:none !important; }` + '.line{border-bottom:1px solid #000000;}'
style = document.createElement('style')
style.setAttribute('id', '__legal__')
style.appendChild(document.createTextNode(css))
document.head.appendChild(style)
}
})