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");
//}
}
})();
https://gyazo.com/9cbbc34d7bb44a4bfdc90c3837d39c9d
ブックマークレットに登録するコード