Skip to content

Instantly share code, notes, and snippets.

@james-prado
Created January 28, 2026 20:05
Show Gist options
  • Select an option

  • Save james-prado/03353c26d02a8142f5f50570474af7cb to your computer and use it in GitHub Desktop.

Select an option

Save james-prado/03353c26d02a8142f5f50570474af7cb to your computer and use it in GitHub Desktop.
A bookmarklet that hides shopify preview bars
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