Skip to content

Instantly share code, notes, and snippets.

@yy-tromb
Last active April 28, 2025 01:18
Show Gist options
  • Save yy-tromb/09eb0cc8292b5c63aa3a43d81407152b to your computer and use it in GitHub Desktop.
Save yy-tromb/09eb0cc8292b5c63aa3a43d81407152b to your computer and use it in GitHub Desktop.
/// 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"';
}
}
}
@yy-tromb
Copy link
Author

自分用

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment