A small Chrome extension that shows the vertical scroll progress of the area you are reading.
The progress is displayed at the bottom left. Click the extension icon to hide or show it for the current tab.
The extension runs on HTTP and HTTPS pages.
| Layout | Behavior |
|---|---|
| Standard document | Shows the progress of the document viewport. |
| Fixed shell with a scrollable body or panel | Follows the element after it starts scrolling. |
| Multiple scrollable panes | Follows the pane that was scrolled most recently. |
| Viewport resize | Recalculates the current scroll area. |
| Active pane resize | Recalculates the active element without polling the page. |
| Standard Fullscreen API | Hides during fullscreen and restores after fullscreen ends. |
flowchart LR
subgraph standard["Standard document"]
document["Document viewport<br/>vertical scroll"]
end
subgraph shell["Fixed shell"]
header["Fixed header"]
content["Scrollable content<br/>vertical scroll"]
header --> content
end
subgraph split["Multiple panes"]
paneA["Pane A<br/>vertical scroll"]
paneB["Pane B<br/>vertical scroll"]
end
The extension starts with the document viewport. A scroll event from an element with a vertical scroll range makes that element the active scroll area. In a multi-pane layout, the latest vertically scrolled pane wins. Horizontal-only scroll areas do not replace the current source.
flowchart TD
event["load, scroll, viewport resize,<br/>active element resize, or fullscreenchange"] --> fullscreen{"Standard fullscreen active?"}
fullscreen -- Yes --> hide["Hide the indicator"]
fullscreen -- No --> target{"Active scroll source"}
target -- "Document or initial state" --> documentProgress["Calculate document progress"]
target -- "Last scrolled element" --> elementProgress["Calculate element progress"]
documentProgress --> range{"Vertical scroll range exists?"}
elementProgress --> range
range -- Yes --> show["Show and update the indicator"]
range -- No --> hide
- Horizontal scroll progress is not supported.
- Scroll areas inside iframes are not observed. The content script runs in the top frame only.
- Scroll areas inside shadow roots are not observed.
- Site-specific CSS pseudo-fullscreen modes are not detected.
- Browser fullscreen started with F11 is not treated as content fullscreen.
- Only one indicator is shown. It follows the most recently scrolled area.
- Local
file://pages are not supported. - Chrome's built-in PDF viewer is not supported.
The behavior is based on the CSSOM View Module, DOM Standard, Resize Observer, Fullscreen Standard, and the Chrome content scripts manifest.
© 2017 harapeko
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
