ReadingRuler
A reading aid that highlights the line you are reading.
As of June 2026, ReadingRuler has 670 users and a 3.43/5 rating from 14 reviews in the Accessibility category.
Usersup 4.7 percent+4.7%
670
670
Ratingdown 5.2 percent−5.2%
3.43
14 reviews
Reviewsup 7.7 percent+7.7%
14
Version
4.1
Manifest V3
90-day change · In the last 90 days this extension 1 version update, changed permissions.
History
12 snapshotsTracking since Apr 1, 2026.
View as table
| Date | Users | Rating | Reviews | Version |
|---|---|---|---|---|
| Apr 1, 2026 | 640 | 3.62 | 13 | 4.0 |
| Apr 30, 2026 | 633 | 3.43 | 14 | 4.0 |
| May 6, 2026 | 644 | 3.43 | 14 | 4.1 |
| May 10, 2026 | 652 | 3.43 | 14 | 4.1 |
| May 13, 2026 | 642 | 3.43 | 14 | 4.1 |
| May 17, 2026 | 630 | 3.43 | 14 | 4.1 |
| May 21, 2026 | 641 | 3.43 | 14 | 4.1 |
| May 26, 2026 | 655 | 3.43 | 14 | 4.1 |
| May 31, 2026 | 634 | 3.43 | 14 | 4.1 |
| Jun 5, 2026 | 637 | 3.43 | 14 | 4.1 |
| Jun 9, 2026 | 650 | 3.43 | 14 | 4.1 |
| Jun 16, 2026 | 637 | 3.43 | 14 | 4.1 |
| Now | 670 | 3.43 | 14 | 4.1 |
Changelog
- Apr 30, 2026description
Based on this script: https://greasyfork.org/en/scripts/372448-reading-ruler/code This reading ruler will aid you on reading texts on the internet It will place a semi-transparent line on your screen, just hit the combination ctrl + r on windows and mac (not the command button but the control button) to activate the ruler, hit the same configuration to remove the ruler This idea come from the reddit user /u/VectorLightning And the thread can be found here: https://www.reddit.com/r/SomebodyMakeThis/comments/9huwbw/smt_a_firefox_addon_that_adds_a_horizontal/ I hope you find this extension useful Releases Notes: V4.0 Redo of the extension, all the features introduced on V3.1 were causing a lot of bug, surprisingly there are still people using and finding this extension, so I decided to simplify it and make it work on all websites. I hope this update fixes all major issues reported on the feedback page. Here a list of changes: - You are not able to set a shortcut anymore, for now these are set by default. - Windows: ALT + SHIFT + 3 - Mac: Command + SHIFT + U - Color and opacity are still options that you can change - Add save button to apply changes done to the ruler color and opacity - Fix issue with ruler not working on multiple websites - Simplified core mechanism to allow extension to always work V3.1 Lots of improvements, extension should now always work and should not be invisible - fix problem where ruler would not show on screen (for real this time!) - new popup layout with 2 new options - you now can choose a color for your ruler - you can now set how visible you want your ruler to be - update core code - remove itself when its orphaned - create functions to prevent references on event handlers - remove unnecessary calls to background script - overall improve code to work better v3.0.1 - Avoid exceptions when extension is updated - Increase z index of ruler to try to push to the foreground v3.0 - Code rewrite to make extension function properly - Update manifest to V3 - Fix extension so it should only show the ruler when active - Drop support for Alt modifier key, you can now only combine CTRL, SHIFT and a keyboard key - Drop badge text since it was not working anymore v 2.2 - Fix issue with ruler not showing when pressing the toggle combination v 2.1 - Add badge to extension icon to let you know the tool is active v 2.0 - Add options page - Allow user to choose from using CTRL, ALT and SHIFT plus a key - Update and rewrite the entire code to be more OOP
Based on this script: https://greasyfork.org/en/scripts/372448-reading-ruler/code This reading ruler will aid you on reading texts on the internet It will place a semi-transparent line on your screen, just hit the combination ctrl + r on windows and mac (not the command button but the control button) to activate the ruler, hit the same configuration to remove the ruler This idea come from the reddit user /u/VectorLightning And the thread can be found here: https://www.reddit.com/r/SomebodyMakeThis/comments/9huwbw/smt_a_firefox_addon_that_adds_a_horizontal/ I hope you find this extension useful Releases Notes: V4.1 Bug fixes - Fixed the keyboard shortcut not working. The root cause was a race condition in the background service worker settings hadn't finished loading from storage when the shortcut was pressed, causing a silent crash that prevented the ruler from ever appearing. - Fixed the extension not working on tabs that were already open before the extension was installed or updated. The content script is now injected on-demand when needed, so there is no longer a need to reload existing tabs. - Fixed ruler opacity not saving correctly - the value from the slider was being stored as a string instead of a number. - Fixed a background script security issue where the message handler could invoke arbitrary functions. UI - Redesigned the popup with a clean, minimal layout - Keyboard shortcuts are now displayed with proper kbd key styling. - Opacity slider now shows the current value as you drag it. - Save button gives visual confirmation when settings are saved. - Removed all external dependencies (Bootstrap, jQuery, Google Fonts, bootstrap-toggle) - the popup no longer requires an internet connection to render correctly and loads instantly. V4.0 Redo of the extension, all the features introduced on V3.1 were causing a lot of bug, surprisingly there are still people using and finding this extension, so I decided to simplify it and make it work on all websites. I hope this update fixes all major issues reported on the feedback page. Here a list of changes: - You are not able to set a shortcut anymore, for now these are set by default. - Windows: ALT + SHIFT + 3 - Mac: Command + SHIFT + U - Color and opacity are still options that you can change - Add save button to apply changes done to the ruler color and opacity - Fix issue with ruler not working on multiple websites - Simplified core mechanism to allow extension to always work V3.1 Lots of improvements, extension should now always work and should not be invisible - fix problem where ruler would not show on screen (for real this time!) - new popup layout with 2 new options - you now can choose a color for your ruler - you can now set how visible you want your ruler to be - update core code - remove itself when its orphaned - create functions to prevent references on event handlers - remove unnecessary calls to background script - overall improve code to work better v3.0.1 - Avoid exceptions when extension is updated - Increase z index of ruler to try to push to the foreground v3.0 - Code rewrite to make extension function properly - Update manifest to V3 - Fix extension so it should only show the ruler when active - Drop support for Alt modifier key, you can now only combine CTRL, SHIFT and a keyboard key - Drop badge text since it was not working anymore v 2.2 - Fix issue with ruler not showing when pressing the toggle combination v 2.1 - Add badge to extension icon to let you know the tool is active v 2.0 - Add options page - Allow user to choose from using CTRL, ALT and SHIFT plus a key - Update and rewrite the entire code to be more OOP
- Apr 30, 2026short_description
A reading aid for pages with wiiiiiiide paragraphs.
A reading aid that highlights the line you are reading.
- Apr 30, 2026permissions
storage, activeTab
storage, activeTab, scripting
Permissions & access
- Permissions
- storageactiveTabscripting
- Host access
- None declared
Screenshots
About
Based on this script: https://greasyfork.org/en/scripts/372448-reading-ruler/code This reading ruler will aid you on reading texts on the internet It will place a semi-transparent line on your screen, just hit the combination ctrl + r on windows and mac (not the command button but the control button) to activate the ruler, hit the same configuration to remove the ruler This idea come from the reddit user /u/VectorLightning And the thread can be found here: https://www.reddit.com/r/SomebodyMakeThis/comments/9huwbw/smt_a_firefox_addon_that_adds_a_horizontal/ I hope you find this extension useful Releases Notes: V4.1 Bug fixes - Fixed the keyboard shortcut not working. The root cause was a race condition in the background service worker settings hadn't finished loading from storage when the shortcut was pressed, causing a silent crash that prevented the ruler from ever appearing. - Fixed the extension not working on tabs that were already open before the extension was installed or updated. The content script is now injected on-demand when needed, so there is no longer a need to reload existing tabs. - Fixed ruler opacity not saving correctly - the value from the slider was being stored as a string instead of a number. - Fixed a background script security issue where the message handler could invoke arbitrary functions. UI - Redesigned the popup with a clean, minimal layout - Keyboard shortcuts are now displayed with proper kbd key styling. - Opacity slider now shows the current value as you drag it. - Save button gives visual confirmation when settings are saved. - Removed all external dependencies (Bootstrap, jQuery, Google Fonts, bootstrap-toggle) - the popup no longer requires an internet connection to render correctly and loads instantly. V4.0 Redo of the extension, all the features introduced on V3.1 were causing a lot of bug, surprisingly there are still people using and finding this extension, so I decided to simplify it and make it work on all websites. I hope this update fixes all major issues reported on the feedback page. Here a list of changes: - You are not able to set a shortcut anymore, for now these are set by default. - Windows: ALT + SHIFT + 3 - Mac: Command + SHIFT + U - Color and opacity are still options that you can change - Add save button to apply changes done to the ruler color and opacity - Fix issue with ruler not working on multiple websites - Simplified core mechanism to allow extension to always work V3.1 Lots of improvements, extension should now always work and should not be invisible - fix problem where ruler would not show on screen (for real this time!) - new popup layout with 2 new options - you now can choose a color for your ruler - you can now set how visible you want your ruler to be - update core code - remove itself when its orphaned - create functions to prevent references on event handlers - remove unnecessary calls to background script - overall improve code to work better v3.0.1 - Avoid exceptions when extension is updated - Increase z index of ruler to try to push to the foreground v3.0 - Code rewrite to make extension function properly - Update manifest to V3 - Fix extension so it should only show the ruler when active - Drop support for Alt modifier key, you can now only combine CTRL, SHIFT and a keyboard key - Drop badge text since it was not working anymore v 2.2 - Fix issue with ruler not showing when pressing the toggle combination v 2.1 - Add badge to extension icon to let you know the tool is active v 2.0 - Add options page - Allow user to choose from using CTRL, ALT and SHIFT plus a key - Update and rewrite the entire code to be more OOP
Technical
- Version
- 4.1
- Manifest
- V3
- Size
- 50.15KiB
- Min Chrome
- 88
- Languages
- 1
- Featured
- Yes
Metadata
- ID
- llfjhgjhieplblmacijlmdfffocjhpbh
- Developer ID
- u48b8a68de31562164e6ffe1cc9e62014
- Developer Email
- [email protected]
- Created
- Oct 1, 2018
- Last Updated (Store)
- Apr 9, 2026
- Last Scraped
- Jun 16, 2026
- Website
- —
- Support URL
- —
- Privacy Policy
- —
Similar extensions
Alternatives to ReadingRuler, ranked by description similarity.
Reader Line
Use Reader Line app to guide and enhance your experience with reading ruler to maintain your focus with reading line.
20.0K
★ 4.9
Reading Buddy
Accessibility-focused reading support extension with dyslexia-friendly features
5
★ 1.0
Easy Reader
Focus on the content; as little or as much as you'd like.
147
★ 5.0
Dyslexia Friendly
Increases readability of websites by changing to easier-to-read fonts and adding visual enhancements
10.0K
★ 4.3
Reader View
Removes clutter like buttons, backgrounds, adjusts text size, contrast, and layout for better readability
300.0K
★ 4.7
Screen Shader | Smart Screen Tinting
Shades Chrome to a soothing orange color to decrease eye-strain, eye fatigue and to appease your brain's day/night cycle.
100.0K
★ 4.5
EasyReader
EasyReader can customize and improve the readability of long web articles
30.0K
★ 4.6
Reading Mask
Enhance focus while reading with a customizable highlight that follows your cursor, reducing distractions and eye strain.
152
★ 3.8
Data sourced from the Chrome Web Store · last verified Jun 16, 2026.