Portable Utility

Breakpoint Bookmarklet

Drag the button below to your bookmarks bar to use the ruler on any site.

↔ Breakpoint Ruler

← Drag this button to your Bookmarks Toolbar →

1

Install

Make sure your Bookmarks Bar is visible (Ctrl+Shift+B). Drag the "Breakpoint Ruler" button directly into the bar.

2

Navigate

Go to any website you want to test (e.g., your development site or a competitor's page).

3

Activate

Click the bookmark. A real-time pixel counter and breakpoint label will appear at the top of the page.

Real-time Responsive Auditing

The Breakpoint Tester Bookmarklet is a lightweight JavaScript injection tool. Unlike an iframe-based resizer, this runs natively on the page, allowing you to use your browser's own window resizing to see exactly how the DOM reacts at every pixel.

Why use a Bookmarklet?

The Source Code

For transparency, here is the script contained within the bookmarklet:

javascript:(function(){
  const el = document.createElement('div');
  el.style.cssText = 'position:fixed;top:0;left:0;...';
  const update = () => {
    el.innerText = `Width: ${window.innerWidth}px`;
  };
  window.onresize = update;
  document.body.appendChild(el);
})();