Last active
April 28, 2025 01:18
-
-
Save yy-tromb/09eb0cc8292b5c63aa3a43d81407152b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// NotoForce.js | |
alert(); | |
document.onload=tonoto | |
document.addEventListener("DOMContentLoaded",tonoto) | |
function tonoto(){ | |
for(let n of ["p","div","span","td"]){ | |
for(let e of document.getElementsByTagName(n)){ | |
e.style.font='100% "Noto Sans CJK JP"'; | |
} | |
} | |
for(let n of ["h1","h2","h3","h4","h5","h6","th"]){ | |
for(let e of document.getElementsByTagName(n)){ | |
e.style.font='bold 100% "Noto Sans CJK JP"'; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
自分用