Skip to content

Instantly share code, notes, and snippets.

@shao1555
Created October 14, 2019 02:51
Show Gist options
  • Save shao1555/e83f0853dac296b9481a3059faae0e03 to your computer and use it in GitHub Desktop.
Save shao1555/e83f0853dac296b9481a3059faae0e03 to your computer and use it in GitHub Desktop.
淘宝(Taobao)、天猫(Tmall)の注文画面をきれいにして印刷しやすくする
[".banner", "#p4p_ad", "#footer", ".J_guess-you-like", "#J_TbFooter", "#J_xiaomi_dialog", "#appBanner", "#appAldAdvert", "#appP4pAdvert", "#site-nav", "#J_MUIMallbar"].forEach(function(selector){
document.querySelectorAll(selector).forEach(function(node){
node.style.display = "none";
});
});
document.querySelectorAll("html,body").forEach(function(node){
node.style.backgroundColor = "#fff";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment