A tiny Manifest V3 browser extension that softly blurs linux.do sticky topic titles until hover.
When browsing a linux.do topic page, the site can show the current topic title in a sticky header near the top-left of the page while you scroll. This extension makes that sticky title less readable by default and reveals it on hover.
The extension is intentionally minimal:
- No background service worker
- No popup
- No options page
- No storage permission
- No external dependencies
-
Open the extensions page:
- Chrome:
chrome://extensions/ - Edge:
edge://extensions/
- Chrome:
-
Enable Developer mode.
-
Click Load unpacked.
-
Select this folder:
linuxdo-title-blur
- Open a linux.do topic page, such as
https://linux.do/t/.... - Scroll until the sticky title appears near the top-left of the page.
- Confirm the title is softly blurred by default.
- Hover the title and confirm it becomes clear.
- Move the mouse away and confirm it becomes blurred again.
Also check that regular topic list titles, search results, notification items, and the main topic title are not blurred.
The visual effect is defined in src/content.css:
- Blur amount:
filter: blur(2.8px) - Default visibility:
opacity: 0.78 - Edge feathering:
mask-imageand extra inline spacing
The sticky title detection logic is in src/content.js. If linux.do changes its DOM, inspect the sticky title in DevTools and adjust the candidate selectors or position checks there.
Recommended:
- Chrome
- Microsoft Edge
- Other recent Chromium-based browsers
Firefox may work, but Chrome/Edge are the primary tested targets. Safari requires packaging as a Safari Web Extension.
This project is not affiliated with linux.do.