Expand LinkedIn's main tabs to full width. More space, less clutter.
- Full-Width Tabs – Expands LinkedIn's main tabs to the full viewport: Home, Messaging, My Network, Jobs and Notifications.
- Right Rail Collapsed – Messaging, My Network and Notifications collapse the ads/recommendations rail to maximize content area; Home keeps its rail and widens everything.
- Dedicated Jobs Layout – The Jobs results list and detail pane are expanded for a bigger search experience.
- Adaptive Messaging List – On
/messagingthe left pane scales with your screen (between 1/6 and 1/3 of viewport, capped at 400px) and re-adapts live on resize. - Overlay Bubble Untouched – The floating chat bubble on other LinkedIn pages keeps its native behavior.
- Auto-Apply – Activates instantly when you open a supported LinkedIn page. No extra clicks needed.
- SPA-Resilient – Watches for LinkedIn's re-renders and reapplies layout automatically.
- Master Toggle – Toolbar popup with a clean ON/OFF switch lets you pause the extension anytime.
- Visit LinkedSpace on the Chrome Web Store
- Click Add to Chrome
- Navigate to linkedin.com and enjoy!
- Clone or download this repository
- Open Chrome/Brave and navigate to
chrome://extensions(orbrave://extensions) - Enable Developer Mode (toggle in the top-right corner)
- Click Load unpacked and select the
linkedspace/folder - Navigate to linkedin.com and enjoy!
linkedspace/
├── manifest.json # Manifest V3 config
├── content.js # Core logic for expanded layouts
├── styles.css # Full-width overrides
├── build.js # Build and packaging script
├── package.json # Project metadata and build scripts
├── dist/ # Generated build output (gitignored)
├── popup/
│ ├── popup.html # Extension toolbar popup
│ ├── popup.js # Popup toggle & status logic
│ └── popup.css # Popup styles
├── icons/
│ ├── icon16.png
│ ├── icon32.png
│ ├── icon48.png
│ └── icon128.png
├── store_assets/ # Chrome Web Store graphics & screenshots
│ ├── promo_tile_440x280.png
│ ├── screenshot_before.png
│ └── screenshot_after.png
├── .gitignore
├── LICENSE # AGPL-3.0 License
└── README.md
To create a production build ready for the Chrome Web Store:
npm run buildThis generates a dist/ folder and a linkedspace.zip bundle.
Licensed under the GNU Affero General Public License v3.0 (or any later version).