WorkFlowyのカード型のstyleを切り替えるブックマークレット
code:script.js
(function(){
const body = document.getElementById("app");
if (body.classList.contains("card")){
const t = document.createElement('style');
t.innerText = `
.innerContentContainer {
all:initial;
}
`
document.head.appendChild(t);
body.classList.remove("card");
//const items = document.getElementsByClassName("innerContentContainer")
//for (const item of items) {
// item.classList.remove("inlinecard");
//}
}else{
body.classList.add("card");
//行要素にcssを付ける
const t = document.createElement('style');
t.innerText = `
.innerContentContainer{
border: 1px solid grey;
line-height: 2em;
display: block;
padding: 10px;
background-color: antiquewhite;
}
`
document.head.appendChild(t);
//const items = document.getElementsByClassName("innerContentContainer")
//for (const item of items) {
// item.classList.add("inlinecard");
//}
}
})();
#WorkFlowyのブックマークレット
https://gyazo.com/9cbbc34d7bb44a4bfdc90c3837d39c9d
ブックマークレットに登録するコード
javascript:(function(d,s){ s=d.createElement('script');s.src='https://scrapbox.io/api/code/rashitamemo/WorkFlowy%E3%81%AE%E3%82%AB%E3%83%BC%E3%83%89%E5%9E%8B%E3%81%AEstyle%E3%82%92%E5%88%87%E3%82%8A%E6%9B%BF%E3%81%88%E3%82%8B%E3%83%96%E3%83%83%E3%82%AF%E3%83%9E%E3%83%BC%E3%82%AF%E3%83%AC%E3%83%83%E3%83%88/script.js';d.body.appendChild(s);})(document)