Method: Create a Bookmarklet (Recommended)
1. -Show your bookmarks bar (Ctrl+Shift+B in Chrome)
2. -Right-click on the bookmarks bar "Add page..."
3. -Name: Type "Reading Line" (or whatever you prefer)
4. -URL: Paste the entire JavaScript code I provided
--- cut here: begin --------------------------------------------------
javascript:(function(){if(window.readingLine){document.body.removeChild(window.readingLine);window.readingLine=null;document.removeEventListener('mousemove',window.updateLine);alert('Reading line removed')}else{window.readingLine=document.createElement('div');window.readingLine.style.cssText='position:fixed;left:0;width:100%;height:3px;background:rgba(255,0,0,0.8);pointer-events:none;z-index:2147483647;box-shadow:0 0 5px rgba(0,0,0,0.5)';document.body.appendChild(window.readingLine);window.updateLine=function(e){window.readingLine.style.top=e.clientY+'px'};document.addEventListener('mousemove',window.updateLine);alert('Reading line activated - move your mouse!')}})();
--- cut here: end ----------------------------------------------------
5. -Click "Save"