Created
January 28, 2026 20:05
-
-
Save james-prado/03353c26d02a8142f5f50570474af7cb to your computer and use it in GitHub Desktop.
A bookmarklet that hides shopify preview bars
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
| javascript: (() => { let style = document.querySelector("%23hide_preview_bar"); if (style) return style.remove(); style = document.createElement("style"); style.setAttribute("id", "hide_preview_bar"); document.head.appendChild(style); style.sheet.insertRule(%60%23PBarNextFrameWrapper{display:none;}%60);})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment