Problem
LinkedIn feed blocking (soft block / "Feed block" option) doesn't hide the feed. The selectors used to target the feed elements are outdated and don't match LinkedIn's current DOM structure.
Current selectors (not working)
feed: {
primary: 'main.scaffold-layout__main',
fallbacks: [
'.scaffold-finite-scroll__content',
'[data-finite-scroll-hotkey-context="FEED"]',
'.feed-shared-update-v2',
'[data-id^="urn:li:activity"]',
],
}
To fix
- Inspect LinkedIn's current DOM structure on the feed page (
/feed or /)
- Find the correct selectors for:
- The main feed container
- Individual feed posts
- "People you may know" section
- Update
LINKEDIN_SELECTORS in src/shared/config.ts
- Test that feed is hidden when "Feed block" is selected
Temporarily disabled
LinkedIn has been removed from the popup UI until this is fixed. See PLATFORM_ORDER in src/ui/popup.ts.
Problem
LinkedIn feed blocking (soft block / "Feed block" option) doesn't hide the feed. The selectors used to target the feed elements are outdated and don't match LinkedIn's current DOM structure.
Current selectors (not working)
To fix
/feedor/)LINKEDIN_SELECTORSinsrc/shared/config.tsTemporarily disabled
LinkedIn has been removed from the popup UI until this is fixed. See
PLATFORM_ORDERinsrc/ui/popup.ts.