Skip to content

Instantly share code, notes, and snippets.

@pythoncat1024
Last active December 7, 2018 02:02
Show Gist options
  • Save pythoncat1024/3bf6d0a2b0b5b2bb54090e803d8e5907 to your computer and use it in GitHub Desktop.
Save pythoncat1024/3bf6d0a2b0b5b2bb54090e803d8e5907 to your computer and use it in GitHub Desktop.
清除 csdn 博客页面的右边侧栏
console.clear();
right = document.getElementsByClassName('recommend-fixed-box');
for(var index = right.length-1;index>=0;index--){
right[index].remove();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment