ページの背景をリーガルパッド風にするUserScript
onな状態。
https://gyazo.com/8a584391726916fef8ff44eea05f4678
背景色が黄色になり
各行に下線が入る
code:script.js
scrapbox.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)
}
})
https://gyazo.com/2453c9232b1e9268639a501502087659