Skip to content

Instantly share code, notes, and snippets.

@youcune
Last active October 3, 2024 13:08
Show Gist options
  • Save youcune/8e3335c5d13e8b5e09714a5fc22b3682 to your computer and use it in GitHub Desktop.
Save youcune/8e3335c5d13e8b5e09714a5fc22b3682 to your computer and use it in GitHub Desktop.
Ad Blockerを使うなというような、画面の前面を支配するモーダル的なものを消すBookmarklet(そしてスクロールできなくされていたらそれもできるようにします)。
javascript:var maxZIndex=-Infinity;var maxZIndexElement=null;document.querySelectorAll('div').forEach(element=>{const zIndex=window.getComputedStyle(element).zIndex;if(!isNaN(zIndex)&&zIndex>maxZIndex){maxZIndex=zIndex;maxZIndexElement=element;}});if(maxZIndexElement){maxZIndexElement.remove();}document.body.style.setProperty('overflow','auto','important');void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment